old version placed

This commit is contained in:
2024-12-31 12:22:36 +03:00
parent 08b7ad5c00
commit 00acc8c320
93 changed files with 7481 additions and 1 deletions

View File

@@ -0,0 +1,11 @@
"use server";
import { fetchDataWithToken } from "../api-fetcher";
import { baseUrl } from "../basics";
const eventList = `${baseUrl}/event/list`;
async function retrieveEventList() {
return await fetchDataWithToken(eventList, {}, "GET", false);
}
export { retrieveEventList };