mirror of
https://github.com/Sendouc/sendou.ink.git
synced 2026-05-13 14:31:10 -05:00
14 lines
349 B
TypeScript
14 lines
349 B
TypeScript
export function oldSendouInkUserProfile({ discordId }: { discordId: string }) {
|
|
return `https://sendou.ink/u/${discordId}`;
|
|
}
|
|
|
|
export function sendouQFrontPage() {
|
|
return "/play";
|
|
}
|
|
export function sendouQAddPlayersPage() {
|
|
return "/play/add-players";
|
|
}
|
|
export function sendouQMatchPage(matchId: string) {
|
|
return `/play/match/${matchId}`;
|
|
}
|