UNPKG

packfs-core

Version:

Semantic filesystem operations for LLM agent frameworks with natural language understanding. See LLM_AGENT_GUIDE.md for copy-paste examples.

14 lines 449 B
"use strict"; /** * Core filesystem interface for PackFS */ Object.defineProperty(exports, "__esModule", { value: true }); exports.FileSystemInterface = void 0; const logger_js_1 = require("./logger.js"); class FileSystemInterface { constructor() { this.logger = logger_js_1.Logger.getInstance().createChildLogger(this.constructor.name); } } exports.FileSystemInterface = FileSystemInterface; //# sourceMappingURL=filesystem.js.map