2021-04-03 17:46:54 +00:00
|
|
|
"use strict";
|
|
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
2021-05-23 20:42:02 +00:00
|
|
|
const main_1 = require("../../../main");
|
|
|
|
const path = '/getSettings';
|
2021-04-03 17:46:54 +00:00
|
|
|
const handler = (_, res) => {
|
2021-05-29 10:06:26 +00:00
|
|
|
res.send(main_1.getSettings());
|
2021-04-03 17:46:54 +00:00
|
|
|
};
|
|
|
|
const apiHandler = { path, handler };
|
|
|
|
exports.default = apiHandler;
|