22 lines
526 B
TypeScript
22 lines
526 B
TypeScript
export const API_BASE_URL = __DEV__
|
|
? 'https://f0a9b87c3831.ngrok-free.app'
|
|
: 'https://your-production-url.com'
|
|
|
|
export const API_ENDPOINTS = {
|
|
AUTH: {
|
|
LOGIN: '/api/auth/login',
|
|
REGISTER: '/api/auth/register',
|
|
},
|
|
PROFILE: {
|
|
FITNESS: '/api/profile/fitness',
|
|
},
|
|
CLIENTS: '/api/clients',
|
|
USERS: '/api/users',
|
|
ATTENDANCE: {
|
|
CHECK_IN: '/api/attendance/check-in',
|
|
CHECK_OUT: '/api/attendance/check-out',
|
|
HISTORY: '/api/attendance/history',
|
|
},
|
|
RECOMMENDATIONS: '/api/recommendations',
|
|
}
|