Skip to content

Instantly share code, notes, and snippets.

import { Elysia } from "elysia";
import { JSONFilePreset } from 'lowdb/node'
import type { Database } from '../data';
const defaultData: Database = {
employees: [],
activityTypes: [],
schedule: []
};