UNPKG

igo

Version:

Igo is a Node.js Web Framework based on Express

13 lines (7 loc) 267 B
// Define your Express routes here // Check http://expressjs.com/fr/guide/routing.html for documentation const WelcomeController = require('./controllers/WelcomeController'); // module.exports.init = (app) => { app.get('/', WelcomeController.index); };