Skip to content

Instantly share code, notes, and snippets.

@kutanov
Created February 15, 2020 01:25
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kutanov/7597229da69c44c7a4a7af8eb8edfb3e to your computer and use it in GitHub Desktop.
Save kutanov/7597229da69c44c7a4a7af8eb8edfb3e to your computer and use it in GitHub Desktop.
var express = require('express');
var router = express.Router();
const i18next = require('i18next');
class IndexController {
static list(req, res, next) {
res.render('index', { title: 'Express'});
}
}
module.exports = IndexController;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment