feat: support sending "new title" alerts to devices
This commit is contained in:
10
src/controllers/upcoming/index.ts
Normal file
10
src/controllers/upcoming/index.ts
Normal file
@@ -0,0 +1,10 @@
|
||||
import { Hono } from "hono";
|
||||
|
||||
const app = new Hono();
|
||||
|
||||
app.route(
|
||||
"/",
|
||||
await import("./titles").then((controller) => controller.default),
|
||||
);
|
||||
|
||||
export default app;
|
||||
Reference in New Issue
Block a user