Files
Tanami_App/lib/shared/api/api_endpoints.dart

11 lines
434 B
Dart
Raw Normal View History

2024-05-24 19:32:53 +05:30
class ApiEndpoints {
2024-07-11 19:36:40 +05:30
static const base="https://tanami.betadelivery.com/";
2024-07-10 17:34:49 +05:30
static const baseurl =
"https://tanami.betadelivery.com/api/development/v1/"; //App Base url
static const getcountryurl = baseurl + "country/getAllCountry";
2024-07-11 19:36:40 +05:30
static const requestotpapi=baseurl +"auth/public/register";
static const requestresendotp=baseurl+"auth/public/resend-otp";
static const verifyotp=baseurl+"auth/public/verify-otp";
2024-05-24 19:32:53 +05:30
}