chore: init monorepo

This commit is contained in:
2025-11-16 23:15:20 +08:00
commit 50de4383eb
10 changed files with 165 additions and 0 deletions

15
apps/csms/src/index.ts Normal file
View File

@@ -0,0 +1,15 @@
import { serve } from '@hono/node-server'
import { Hono } from 'hono'
const app = new Hono()
app.get('/', (c) => {
return c.text('Hello Hono!')
})
serve({
fetch: app.fetch,
port: 20128
}, (info) => {
console.log(`Server is running on http://localhost:${info.port}`)
})