13 lines
669 B
Dart
13 lines
669 B
Dart
class ApiConfig {
|
|
static const String baseUrl = "https://proxybuy.liara.run";
|
|
static const String sendCode = "/login/sendcode";
|
|
static const String verifyCode = "/login/getcode";
|
|
static const String updateUser = "/user/updateName";
|
|
static const String updateCategories = "/user/favoriteCategory";
|
|
static const String getFavoriteCategories = "/user/getfavoriteCategory";
|
|
static const String addReservation = "/reservation/add";
|
|
static const String getReservations = "/reservation/get";
|
|
static const String updateFcmToken = "/user/firebaseUpdate";
|
|
static const String addComment = "/comment/add";
|
|
static const String getComments = "/comment/get/";
|
|
} |