18 lines
525 B
TypeScript
18 lines
525 B
TypeScript
export const ROUTES = {
|
|
MAIN: '/',
|
|
USERS: '/users',
|
|
ACTIONS: '/actions',
|
|
CONDITIONS: '/conditions',
|
|
GRAPHS: '/graphs',
|
|
CURRENCIES: '/currencies',
|
|
};
|
|
|
|
export const ENDPOINT = {
|
|
AUTH: 'https://localhost:3189/api/auth',
|
|
USERS: 'https://localhost:3189/api/users',
|
|
ACTIONS: 'https://localhost:3189/api/bot/actions',
|
|
CONDITIONS: 'https://localhost:3189/api/bot/conditions',
|
|
GRAPHS: 'https://localhost:3189/api/bot/graphs',
|
|
CURRENCIES: 'https://localhost:3189/api/bot/currencies',
|
|
};
|