File size: 352 Bytes
453df78 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 |
import { Hono } from "jsr:@hono/hono";
import { chat } from "./src/api/chat.ts";
import { models } from "./src/api/models.ts";
import { auth } from "./src/auth.ts";
import { limit } from "./src/limit.ts";
import { cron } from "./src/cron.ts";
const app = new Hono();
auth(app);
limit(app);
chat(app);
models(app);
cron();
Deno.serve(app.fetch);
|