15 lines
329 B
TypeScript
15 lines
329 B
TypeScript
import type { EndpointConfig } from "./client";
|
|
|
|
export const eventEndpoints = {
|
|
getEvents: {
|
|
base: "events",
|
|
path: "/api/event/all",
|
|
method: "GET" as const,
|
|
} satisfies EndpointConfig,
|
|
getEventById: {
|
|
base: "events",
|
|
path: "/api/event/all",
|
|
method: "GET" as const,
|
|
} satisfies EndpointConfig,
|
|
};
|