14 lines
377 B
Dart
14 lines
377 B
Dart
class ApiConstants {
|
|
static const String baseUrl = 'http://localhost:8080';
|
|
|
|
// Auth endpoints
|
|
static const String loginEndpoint = '/login';
|
|
|
|
// User endpoints
|
|
static const String getUserEndpoint = '/getUser';
|
|
static const String updateUserEndpoint = '/updateUser';
|
|
|
|
// Invitation endpoints
|
|
static const String getAllInvitationsEndpoint = '/invitations/all';
|
|
}
|