mirror of
https://github.com/Equicord/Equicord.git
synced 2025-02-14 13:53:33 -05:00
12 lines
351 B
TypeScript
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})` : ""}`;
|