mirror of
https://github.com/SyncrowIOT/syncrow-app.git
synced 2025-07-16 01:56:19 +00:00
15 lines
447 B
Dart
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';
|
|
}
|