zerobyte/app/server/modules/system/system.service.ts
2025-11-13 18:42:03 +01:00

11 lines
205 B
TypeScript

import { getCapabilities } from "../../core/capabilities";
const getSystemInfo = async () => {
return {
capabilities: await getCapabilities(),
};
};
export const systemService = {
getSystemInfo,
};