mirror of
https://github.com/zadam/trilium.git
synced 2024-11-16 04:35:40 +08:00
11 lines
234 B
JavaScript
11 lines
234 B
JavaScript
|
"use strict";
|
||
|
|
||
|
const express = require('express');
|
||
|
const router = express.Router();
|
||
|
const app_info = require('../../services/app_info');
|
||
|
|
||
|
router.get('', async (req, res, next) => {
|
||
|
res.send(app_info);
|
||
|
});
|
||
|
|
||
|
module.exports = router;
|