Files
syncrow-app/lib/services/api/api_links_endpoints.dart
Mohammad Salameh a9fdb2fc76 modified UI padding handling approach
added auth API endpoints
initialized curtains view for further development
2024-03-05 11:18:08 +03:00

15 lines
447 B
Dart

abstract class ApiEndpoints {
static const String apiKey = '';
//base
static const String baseUrl = 'faris:4001';
//auth
static const String auth = '/authentication/user';
static const String signUp = '$auth/signup';
static const String signIn = '$auth/login';
static const String sendOTP = '$auth/send-otp';
static const String verifyOTP = '$auth/verify-otp';
static const String forgetPassword = '$auth/forget-password';
}