diff --git a/pkg/htp/service.go b/pkg/htp/service.go index 5b46c11..14ca26d 100644 --- a/pkg/htp/service.go +++ b/pkg/htp/service.go @@ -5,11 +5,6 @@ type SyncTrace struct { After func(i int, round *SyncRound) bool } -type SyncOptions struct { - Count int - Trace *SyncTrace -} - func Sync(client *SyncClient, model *SyncModel, trace *SyncTrace) error { for i := 0; ; i++ { if !trace.Before(i) {