2025-09-18 05:51:17 +07:00
|
|
|
class ApiPath {
|
|
|
|
|
static String checkPhone = '/api/v1/customer-auth/check-phone';
|
2025-09-18 06:03:02 +07:00
|
|
|
static String register = '/api/v1/customer-auth/register/start';
|
2025-09-18 06:38:50 +07:00
|
|
|
static String verify = '/api/v1/customer-auth/register/verify-otp';
|
2025-09-18 06:57:08 +07:00
|
|
|
static String setPassword = '/api/v1/customer-auth/register/set-password';
|
2025-09-18 07:04:06 +07:00
|
|
|
static String login = '/api/v1/customer-auth/register/login';
|
2025-09-18 05:51:17 +07:00
|
|
|
}
|