mirror of
https://github.com/SyncrowIOT/web.git
synced 2025-07-09 22:57:21 +00:00
11 lines
405 B
Dart
11 lines
405 B
Dart
abstract class ApiEndpoints {
|
|
static const String baseUrl = 'https://syncrow.azurewebsites.net';
|
|
// static const String baseUrl = 'http://100.107.182.63:4001'; //Localhost
|
|
|
|
////////////////////////////////////// Authentication ///////////////////////////////
|
|
|
|
static const String signUp = '$baseUrl/authentication/user/signup';
|
|
static const String login = '$baseUrl/authentication/user/login';
|
|
|
|
}
|