mirror of
https://github.com/zrepl/zrepl.git
synced 2024-11-28 03:14:57 +01:00
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{}{}}
|
||
|
}
|