mirror of
https://github.com/michivonah/themepark-assistant.git
synced 2025-12-22 22:16:29 +01:00
15 lines
No EOL
273 B
TypeScript
15 lines
No EOL
273 B
TypeScript
import { Hono } from 'hono'
|
|
import { dbConnection } from './db/client'
|
|
import { notificationMethod } from './db/schema'
|
|
|
|
const app = new Hono()
|
|
|
|
app.get('/list', (c) => {
|
|
return c.json(
|
|
{
|
|
message: 'List all notification methods'
|
|
}
|
|
)
|
|
})
|
|
|
|
export default app |