hypnagaga/bin/mods/_utils/mod/index.ts
Ben Aultowski 04877468cf initial
2026-02-27 11:58:02 -05:00

11 lines
271 B
TypeScript

import { FileMover } from './fs';
import { MagicFile } from './magicFile';
import { PackageJsonManager } from './pkg';
export class Mod {
pkg = new PackageJsonManager();
fs = new FileMover();
magicFile(filePath: string) {
return new MagicFile(filePath);
}
}