wesal/frontend/lib/constants/api_constants.dart
2025-07-22 10:34:34 +03:00

15 lines
449 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';
static const String acceptInvitationEndpoint = '/invitations/accept';
}