mirror of
https://github.com/filiprojek/nork.git
synced 2025-02-20 01:22:58 +01:00
7 lines
170 B
TypeScript
7 lines
170 B
TypeScript
import { Router } from 'express'
|
|
import * as rootController from '@/controllers/rootController'
|
|
|
|
export const router = Router()
|
|
|
|
router.get('/', rootController.root_get)
|