Notes/src/routes/api/app_info.ts

12 lines
148 B
TypeScript
Raw Normal View History

2017-11-21 00:25:53 -05:00
"use strict";
import appInfo from "../../services/app_info.js";
2017-11-21 00:25:53 -05:00
2020-06-20 12:31:38 +02:00
function getAppInfo() {
return appInfo;
2018-03-30 15:34:07 -04:00
}
2017-11-21 00:25:53 -05:00
export default {
2018-03-30 15:34:07 -04:00
getAppInfo
2020-06-20 12:31:38 +02:00
};