server-ts: Convert routes/api/app_info

pull/43/head
Elian Doran 2024-04-05 20:12:54 +07:00
parent ea36b37f66
commit b13ad5d01e
No known key found for this signature in database
1 changed files with 2 additions and 2 deletions

@ -1,11 +1,11 @@
"use strict";
const appInfo = require('../../services/app_info');
import appInfo = require('../../services/app_info');
function getAppInfo() {
return appInfo;
}
module.exports = {
export = {
getAppInfo
};