mirror of
https://github.com/zrepl/zrepl.git
synced 2024-11-22 08:23:50 +01:00
c743c7b03f
fixes https://github.com/zrepl/zrepl/issues/554 refs https://github.com/zrepl/zrepl/discussions/547#discussioncomment-1936126
16 lines
248 B
Go
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{}{}}
|
|
}
|