Files
Tanami_App/lib/shared/api/api_endpoints.dart
poojapandeyx acf7f8980f otp flow
2024-07-11 19:36:40 +05:30

11 lines
434 B
Dart

class ApiEndpoints {
static const base="https://tanami.betadelivery.com/";
static const baseurl =
"https://tanami.betadelivery.com/api/development/v1/"; //App Base url
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";
}