4 lines
143 B
TypeScript
4 lines
143 B
TypeScript
import Elysia, { t } from "elysia";
|
|
import { health } from "./modules/health";
|
|
|
|
export const app = new Elysia({ prefix: "/api" }).use(health);
|