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