enaklo-flutter/lib/common/url/api_path.dart

14 lines
566 B
Dart
Raw Normal View History

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 08:17:24 +07:00
static String login = '/api/v1/customer-auth/login';
2025-09-18 09:03:50 +07:00
static String resend = '/api/v1/customer-auth/resend-otp';
2025-09-18 10:39:54 +07:00
// Marketing
2025-09-18 14:53:39 +07:00
static String ferrisWheel = '/api/v1/customer/ferris-wheel';
2025-09-18 13:01:31 +07:00
// Customer
static String customerPoint = '/api/v1/customer/points';
2025-09-18 05:51:17 +07:00
}