add crud api

This commit is contained in:
2021-06-13 01:56:32 +03:00
parent 3e68914c92
commit 32da4e52ae
30 changed files with 582 additions and 63 deletions

View File

@ -1,3 +1,12 @@
export const ROUTES = {
MAIN: '/'
MAIN: '/',
USERS: '/users',
ACTIONS: '/actions',
CONDITIONS: '/conditions',
GRAPHS: '/graphs',
CURRENCIES: '/currencies',
};
export const ENDPOINT = {
USERS: 'http://vigdorov.ru:3011/users',
};