In snapshot.goCreateSnapshot(), daemon mode is a stub:
ifopts.Daemon{// TODO: Implement daemon mode with inotifyreturnfmt.Errorf("daemon mode not yet implemented")}
The config has BackupInterval and MinTimeBetweenRun fields and the info command displays daemon settings, but the actual daemon loop with inotify/fswatch is not implemented.
In `snapshot.go` `CreateSnapshot()`, daemon mode is a stub:
```go
if opts.Daemon {
// TODO: Implement daemon mode with inotify
return fmt.Errorf("daemon mode not yet implemented")
}
```
The config has `BackupInterval` and `MinTimeBetweenRun` fields and the info command displays daemon settings, but the actual daemon loop with inotify/fswatch is not implemented.
Ref: parent issue #1
Blocking a user prevents them from interacting with repositories, such as opening or commenting on pull requests or issues. Learn more about blocking a user.
In
snapshot.goCreateSnapshot(), daemon mode is a stub:The config has
BackupIntervalandMinTimeBetweenRunfields and the info command displays daemon settings, but the actual daemon loop with inotify/fswatch is not implemented.Ref: parent issue #1