placeholder for calendar backend

This commit is contained in:
2025-10-17 11:21:43 -04:00
parent 9701ed5b03
commit f7a0884fb3
2 changed files with 54 additions and 0 deletions

View File

@@ -0,0 +1,21 @@
const pool = require('../db')
export async function createEvent(eventObject) {
}
export async function updateEvent(eventObject) {
}
export async function cancelEvent(eventID) {
}
export async function getShortEventsInRange(startDate, endDate) {
}
export async function getEventDetailed(eventID) {
}