12 lines
356 B
TypeScript
12 lines
356 B
TypeScript
import { RouterDefinition } from '../../../lib/src/http/type/RouterDefinition.ts'
|
|
|
|
export default {
|
|
prefix: '/',
|
|
middleware: [],
|
|
get: {
|
|
'/': 'controller::Home.get_home',
|
|
'/maybe': ['middleware::Test', 'controller::Home.get_home'],
|
|
'/statics/**': { handler: 'daton::static', arg: 'assets' },
|
|
},
|
|
} as RouterDefinition
|