8 lines
348 B
Dart
8 lines
348 B
Dart
class AuthApi {
|
|
static const String login = '/api/v1/profile/login';
|
|
static const String logout = '/api/v1/profile/logout';
|
|
static const String forgotPassword = '/api/v1/profile/forgot-password';
|
|
static const String forgotPasswordOtp = '/api/v1/profile/verify-otp';
|
|
static const String resetPassword = '/api/v1/profile/reset-password';
|
|
}
|