mirror of
https://github.com/Radiquum/AniX.git
synced 2025-04-07 00:34:41 +00:00
15 lines
350 B
JavaScript
15 lines
350 B
JavaScript
export const API_URL = "/api";
|
|
|
|
export const endpoints = {
|
|
index: {
|
|
last: `${API_URL}/index/last`,
|
|
ongoing: `${API_URL}/index/ongoing`,
|
|
announce: `${API_URL}/index/announce`,
|
|
finished: `${API_URL}/index/finished`,
|
|
},
|
|
search: `${API_URL}/search`,
|
|
user: {
|
|
profile: `${API_URL}/profile`,
|
|
auth: `${API_URL}/auth`,
|
|
},
|
|
};
|