aboutsummaryrefslogtreecommitdiff
path: root/src/constants/api.ts
blob: 657adf0329ae680fc6ea7a27dd81e1c88cc42674 (plain)
1
2
3
4
5
6
7
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 const SEND_OTP_ENDPOINT: string = 'http://127.0.0.1:8000/api/send-otp/';
export const VERIFY_OTP_ENDPOINT: string =
  'http://127.0.0.1:8000/api/verify-otp/';