rename project folder

This commit is contained in:
Michi 2025-09-08 20:17:41 +02:00
parent 09d1925cc0
commit 3c197d8ebe
9 changed files with 0 additions and 0 deletions

13
api/src/notification.ts Normal file
View file

@ -0,0 +1,13 @@
import { Hono } from 'hono'
const app = new Hono()
app.get('/list', (c) => {
return c.json(
{
message: 'List all notification methods'
}
)
})
export default app