any-sync/commonspace/object/acl/syncacl/syncaclhandler.go
2023-07-01 13:17:18 +02:00

17 lines
354 B
Go

package syncacl
import (
"context"
"github.com/anyproto/any-sync/commonspace/object/acl/list"
"github.com/anyproto/any-sync/commonspace/spacesyncproto"
)
type syncAclHandler struct {
acl list.AclList
}
func (s *syncAclHandler) HandleMessage(ctx context.Context, senderId string, req *spacesyncproto.ObjectSyncMessage) (err error) {
return nil
}