mirror of
				https://github.com/TriliumNext/Notes.git
				synced 2025-11-04 15:11:31 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			14 lines
		
	
	
		
			337 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			337 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
"use strict";
 | 
						|
 | 
						|
const express = require('express');
 | 
						|
const router = express.Router();
 | 
						|
const auth = require('../services/auth');
 | 
						|
const migration = require('../services/migration');
 | 
						|
const sql = require('../services/sql');
 | 
						|
 | 
						|
router.get('', auth.checkAuth, async (req, res, next) => {
 | 
						|
    res.render('index', {});
 | 
						|
});
 | 
						|
 | 
						|
module.exports = router;
 |