zrepl/internal/daemon/snapper/manual.go
2024-10-18 19:21:17 +02:00

16 lines
248 B
Go

package snapper
import (
"context"
)
type manual struct{}
func (s *manual) Run(ctx context.Context, wakeUpCommon chan<- struct{}) {
// nothing to do
}
func (s *manual) Report() Report {
return Report{Type: TypeManual, Manual: &struct{}{}}
}