Files
Moltbot/apps/macos/Sources/OpenClaw/SimpleFileWatcherOwner.swift
2026-03-02 11:32:20 +00:00

16 lines
254 B
Swift

import Foundation
protocol SimpleFileWatcherOwner: AnyObject {
var watcher: SimpleFileWatcher { get }
}
extension SimpleFileWatcherOwner {
func start() {
self.watcher.start()
}
func stop() {
self.watcher.stop()
}
}