16 lines
426 B
Dart
16 lines
426 B
Dart
class ApiPath {
|
|
// Auth
|
|
static const String login = '/api/v1/auth/login';
|
|
static const String logout = '/api/v1/auth/logout';
|
|
|
|
// Analytic
|
|
static const String salesAnalytic = '/api/v1/analytics/sales';
|
|
static const String profitLossAnalytic = '/api/v1/analytics/profit-loss';
|
|
|
|
// Category
|
|
static const String category = '/api/v1/categories';
|
|
|
|
// Product
|
|
static const String product = '/api/v1/products';
|
|
}
|