mirror of
https://github.com/BradNut/boredgame
synced 2025-09-08 17:40:22 +00:00
8 lines
214 B
TypeScript
8 lines
214 B
TypeScript
import { Hono } from 'hono'
|
|
import type { BlankSchema } from 'hono/types'
|
|
import type { HonoTypes } from '../../types'
|
|
|
|
export interface Controller {
|
|
controller: Hono<HonoTypes, BlankSchema, '/'>
|
|
routes(): any
|
|
}
|