1
0
Fork 0
mirror of https://github.com/anyproto/any-sync.git synced 2025-06-08 05:57:03 +09:00

Add stop sync method

This commit is contained in:
mcrakhman 2024-02-14 18:37:59 +01:00
parent 14f6a19835
commit 50ae342d44
No known key found for this signature in database
GPG key ID: DED12CFEF5B8396B
3 changed files with 16 additions and 0 deletions

View file

@ -306,6 +306,9 @@ func (m mockTreeSyncer) Close(ctx context.Context) (err error) {
func (m mockTreeSyncer) StartSync() {
}
func (m mockTreeSyncer) StopSync() {
}
func (m mockTreeSyncer) SyncAll(ctx context.Context, peerId string, existing, missing []string) error {
return nil
}