ai-code-writer
Version:
An AI code writer application using OpenAI APIs for audio transcription and chat completion.
15 lines (14 loc) • 388 B
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
class DirectoryManager {
constructor(directoryWatcher) {
this.directoryWatcher = directoryWatcher;
}
startWatching() {
this.directoryWatcher.startWatching();
}
onChange(callback) {
this.directoryWatcher.onChange(callback);
}
}
exports.default = DirectoryManager;
;