Spaces:
Running on Zero
Running on Zero
File size: 241 Bytes
ef6e870 | 1 2 3 4 5 6 7 8 9 10 11 12 | import { ROUTES } from '$lib/constants/routes';
export class RouterService {
static chat(id: string): string {
return `${ROUTES.CHAT}/${id}`;
}
static settings(section: string): string {
return `${ROUTES.SETTINGS}/${section}`;
}
}
|