1
0
Fork 0
mirror of https://github.com/muerwre/vault-frontend.git synced 2025-04-25 12:56:41 +07:00
vault-frontend/src/constants/urls.ts
2019-08-25 16:10:46 +07:00

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}`,
};