Files
syncrow-web/lib/utils/constants/api_const.dart
2024-07-21 15:09:51 +03:00

9 lines
436 B
Dart

abstract class ApiEndpoints {
static const String baseUrl = 'https://syncrow-staging.azurewebsites.net';
// static const String baseUrl = 'http://100.107.182.63:4001'; //Localhost
//https://syncrow-staging.azurewebsites.net
////////////////////////////////////// Authentication ///////////////////////////////
static const String signUp = 'authentication/user/signup';
static const String login = 'authentication/user/login';
}