wf-radio/src/models/index.js
2025-04-24 18:54:03 +02:00

12 lines
234 B
JavaScript

const { getVersion } = require("../utils/configManager");
async function getVersion() {
const version = await getVersion();
const res = {
version: version
};
return res;
}
module.exports = { getVersion }