import { setGlobalOptions } from "firebase-functions"; import "./firebase"; setGlobalOptions({ maxInstances: 10, region: "asia-northeast3" }); export { kbo } from "./handlers/kboHandlers"; export { user } from "./handlers/userHandlers"; export { prediction } from "./handlers/predictionHandlers"; export { stats } from "./handlers/statsHandlers"; export { admin } from "./handlers/adminHandlers"; export { debug } from "./handlers/debugHandlers"; export { attendance } from "./handlers/attendanceHandlers"; export { kboDailyRefresh } from "./scheduled/kboRefresh"; export { dailyArchive } from "./scheduled/dailyArchive"; export { attendanceReminder } from "./scheduled/attendanceReminder"; export { onGameCompleted } from "./triggers/onGameCompleted";