themepark-assistant/api/src/notification.ts

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