diff options
Diffstat (limited to 'src/constants/index.ts')
-rw-r--r-- | src/constants/index.ts | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/src/constants/index.ts b/src/constants/index.ts index 0667a187..deb89e57 100644 --- a/src/constants/index.ts +++ b/src/constants/index.ts @@ -1,5 +1,3 @@ -// Backend API constants -export const API_ENDPOINT: string = 'http://127.0.0.1:8000/api/'; -export const LOGIN_ENDPOINT: string = 'http://127.0.0.1:8000/api/login/'; -export const LOGOUT_ENDPOINT: string = 'http://127.0.0.1:8000/api/logout/'; -export const REGISTER_ENDPOINT: string = 'http://127.0.0.1:8000/api/register/'; +export * from './api'; +export * from './regex'; +export * from './termsConditions'; |