8 lines
273 B
TypeScript
8 lines
273 B
TypeScript
import { FastifyInstance, FastifyPluginAsync, FastifyPluginOptions } from 'fastify'
|
|
|
|
const router: FastifyPluginAsync = async (app: FastifyInstance, opts: FastifyPluginOptions) => {
|
|
//TODO: Add controllers declaration here
|
|
|
|
// app.get()
|
|
}
|
|
export default router; |