1
0
Fork 0
mirror of https://github.com/anyproto/anytype-heart.git synced 2025-06-09 09:35:00 +09:00

GO-5297: Fix tests

This commit is contained in:
Sergey 2025-04-29 14:57:35 +02:00
parent 4ef8ca37c4
commit 6906c5e9f5
No known key found for this signature in database
GPG key ID: 3B6BEF79160221C6
3 changed files with 6 additions and 26 deletions

View file

@ -48,7 +48,11 @@ func (s *pushNotificationServiceDummy) SubscribeToTopics(ctx context.Context, sp
}
func (s pushNotificationServiceDummy) BroadcastKeyUpdate(spaceId string, aclState *list.AclState) error {
func (s *pushNotificationServiceDummy) CreateSpace(ctx context.Context, spaceId string) (err error) {
return nil
}
func (s *pushNotificationServiceDummy) BroadcastKeyUpdate(spaceId string, aclState *list.AclState) error {
return nil
}