wf-radio/src/models/index.js

12 lines
234 B
JavaScript
Raw Normal View History

2025-04-24 18:54:03 +02:00
const { getVersion } = require("../utils/configManager");
async function getVersion() {
const version = await getVersion();
const res = {
version: version
};
return res;
}
module.exports = { getVersion }