mirror of
https://github.com/anyproto/anytype-heart.git
synced 2025-06-11 02:13:41 +09:00
21 lines
545 B
Go
21 lines
545 B
Go
package space
|
|
|
|
import (
|
|
"context"
|
|
|
|
"github.com/anyproto/any-sync/commonspace/syncstatus"
|
|
"go.uber.org/zap"
|
|
)
|
|
|
|
type statusReceiver struct {
|
|
}
|
|
|
|
func (s *statusReceiver) UpdateTree(ctx context.Context, treeId string, status syncstatus.SyncStatus) (err error) {
|
|
log.With(zap.String("treeId", treeId), zap.Bool("synced", status == syncstatus.StatusSynced)).
|
|
Debug("updating sync status")
|
|
return nil
|
|
}
|
|
|
|
func (s *statusReceiver) UpdateNodeConnection(online bool) {
|
|
log.With(zap.Bool("nodes online", online)).Debug("updating node connection")
|
|
}
|