mirror of
https://github.com/kennethnym/aris.git
synced 2026-02-02 21:21:21 +00:00
11 lines
157 B
TypeScript
11 lines
157 B
TypeScript
|
|
import { Hono } from "hono"
|
||
|
|
|
||
|
|
const app = new Hono()
|
||
|
|
|
||
|
|
app.get("/health", (c) => c.json({ status: "ok" }))
|
||
|
|
|
||
|
|
export default {
|
||
|
|
port: 3000,
|
||
|
|
fetch: app.fetch,
|
||
|
|
}
|