mirror of
https://github.com/System-End/spaces.git
synced 2026-04-19 19:55:17 +00:00
12 lines
483 B
JavaScript
12 lines
483 B
JavaScript
export const API_BASE = 'https://t0080w08wcockgs44ws8w880.b.selfhosted.hackclub.com/api/v1';
|
|
|
|
export const ERROR_MESSAGES = {
|
|
NETWORK_ERROR: 'Network error. Please try again.',
|
|
AUTH_FAILED: 'Authentication failed',
|
|
INVALID_EMAIL: 'Invalid email format',
|
|
INVALID_CODE: 'Invalid or expired verification code',
|
|
CREATE_FAILED: 'Failed to create space',
|
|
START_FAILED: 'Failed to start space',
|
|
STOP_FAILED: 'Failed to stop space',
|
|
STATUS_FAILED: 'Failed to get status',
|
|
};
|