Split services into core and request

This commit is contained in:
2026-01-17 16:19:32 -06:00
parent e59bb35ac9
commit 894c841bb7
11 changed files with 76 additions and 71 deletions

View File

@@ -1,5 +1,4 @@
import { readFile } from "node:fs/promises";
import nunjucks from "nunjucks";
// FIXME: Handle the error here
const loadFile = async (path: string): Promise<string> => {
@@ -9,8 +8,4 @@ const loadFile = async (path: string): Promise<string> => {
return data;
};
export {
loadFile,
}
export { loadFile };