1
0
Fork 1
mirror of https://github.com/Vendicated/Vencord.git synced 2025-01-28 18:26:23 +00:00
Vencord/src/shared/vencordUserAgent.ts

12 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})` : ""}`;