mirror of
https://github.com/Jerryplusy/rc-plugin.git
synced 2025-10-14 16:19:18 +00:00
12 lines
304 B
JavaScript
12 lines
304 B
JavaScript
const BASE_URL = "/r/api";
|
|
|
|
export const SYSTEM_BASE_URL = `${BASE_URL}/system`;
|
|
|
|
export const NETWORK_BASE_URL = `${BASE_URL}/network?url=`;
|
|
|
|
export const BOT_INFO_URL = `${ BASE_URL }/bot`;
|
|
|
|
export const GIT_VERSION_URL = `${ BASE_URL }/version`;
|
|
|
|
export const GIT_COMMIT_URL = `${ BASE_URL }/commit`;
|