mirror of
https://github.com/Vendicated/Vencord.git
synced 2025-02-03 05:06:23 +00:00
13 lines
351 B
TypeScript
13 lines
351 B
TypeScript
|
/*
|
||
|
* Vencord, a Discord client mod
|
||
|
* Copyright (c) 2024 Vendicated and contributors
|
||
|
* SPDX-License-Identifier: GPL-3.0-or-later
|
||
|
*/
|
||
|
|
||
|
import gitHash from "~git-hash";
|
||
|
import gitRemote from "~git-remote";
|
||
|
|
||
|
export { gitHash, gitRemote };
|
||
|
|
||
|
export const VENCORD_USER_AGENT = `Vencord/${gitHash}${gitRemote ? ` (https://github.com/${gitRemote})` : ""}`;
|