websockets implemented
This commit is contained in:
9
backend/routers/falukantRouter.js
Normal file
9
backend/routers/falukantRouter.js
Normal file
@@ -0,0 +1,9 @@
|
||||
import express from 'express';
|
||||
import FalukantController from '../controllers/falukantController.js';
|
||||
|
||||
const router = express.Router();
|
||||
const falukantController = new FalukantController();
|
||||
|
||||
router.get('/example', falukantController.exampleMethod);
|
||||
|
||||
export default router;
|
||||
Reference in New Issue
Block a user