UNPKG

kui-shell

Version:

This is the monorepo for Kui, the hybrid command-line/GUI electron-based Kubernetes tool

10 lines (7 loc) 199 B
const express = require('express') const router = express.Router() /** GET home page. */ router.get('/', function(req, res) { res.render('index', { title: 'Express' }) }) module.exports = router