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

11 lines
447 B
Dart
Raw Normal View History

2024-05-24 19:32:53 +05:30
class ApiEndpoints {
2024-07-12 09:14:15 +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
2024-07-12 09:14:15 +05:30
static const getcountryurl = "${baseurl}country/getAllCountry";
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
}