mirror of
https://github.com/zadam/trilium.git
synced 2024-11-13 11:14:58 +08:00
12 lines
289 B
JavaScript
12 lines
289 B
JavaScript
"use strict";
|
|
|
|
const express = require('express');
|
|
const router = express.Router();
|
|
const auth = require('../services/auth');
|
|
const utils = require('../services/utils');
|
|
|
|
router.get('', auth.checkAuth, async (req, res, next) => {
|
|
res.render('index', {});
|
|
});
|
|
|
|
module.exports = router;
|