This commit is contained in:
Dominic Ferrando
2026-06-25 00:09:50 -04:00
parent 51abbbc00c
commit 038ea7015b
7 changed files with 43 additions and 29 deletions
+5
View File
@@ -3,6 +3,11 @@
"module": "index.ts",
"type": "module",
"private": true,
"exports": {
".": {
"types": "./src/server.ts"
}
},
"scripts": {
"dev": "bun run --hot src/index.ts",
"start": "bun run src/index.ts",
+2
View File
@@ -231,3 +231,5 @@ export const app = new Elysia()
});
app.listen(3000, () => log.info({ port: 3000 }, "server started"));
export type API = typeof app