mirror of
https://github.com/zadam/trilium.git
synced 2025-03-01 14:22:32 +01:00
10 lines
211 B
JavaScript
10 lines
211 B
JavaScript
const express = require('express');
|
|
const router = express.Router();
|
|
const auth = require('../auth');
|
|
|
|
router.get('', auth.checkAuth, (req, res, next) => {
|
|
res.render('app', {});
|
|
});
|
|
|
|
module.exports = router;
|