mirror of
https://github.com/muerwre/vault-frontend.git
synced 2025-04-26 05:16:41 +07:00
11 lines
209 B
TypeScript
11 lines
209 B
TypeScript
export const URLS = {
|
|
BASE: '/',
|
|
AUTH: {
|
|
LOGIN: '/auth/login',
|
|
},
|
|
EXAMPLES: {
|
|
EDITOR: '/examples/edit',
|
|
IMAGE: '/examples/image',
|
|
},
|
|
NODE_URL: (id: number | string) => `/post${id}`,
|
|
};
|