const BASE_API_URL = "/api" export const EVENT_GET = `${BASE_API_URL}/events/getEvents` export const CREATE_EVENT = `${BASE_API_URL}/events/create` export const EVENT_UPD = `${BASE_API_URL}/events/update` export const TICKET_GET = `${BASE_API_URL}/tickets/getTickets` export const ETICKET_GET = `${BASE_API_URL}/tickets/getTicket` export const TICKET_UPDATE = `${BASE_API_URL}/tickets/update` export const TTYPE_GET = `${BASE_API_URL}/tickets/getTType` export const CREATE_TTYPE = `${BASE_API_URL}/tickets/create` export const TICKET_BUY = `${BASE_API_URL}/tickets/buy` export const TTYPE_UPD = `${BASE_API_URL}/tickets/updateType` export const LOGIN_ROUTE = `${BASE_API_URL}/users/login` export const REGISTER_ROUTE = `${BASE_API_URL}/users/register` export const LOGOUT_ROUTE = `${BASE_API_URL}/users/logout` export const USER_INFO_ROUTE = `${BASE_API_URL}/users/loginCheck`