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

Expose creation of storage payload

This commit is contained in:
Mikhail Rakhmanov 2025-03-04 10:49:36 +01:00
parent afb0cf1d09
commit 742e87cb79
No known key found for this signature in database
GPG key ID: DED12CFEF5B8396B
4 changed files with 5 additions and 4 deletions

View file

@ -101,7 +101,7 @@ func (s *spaceService) Name() (name string) {
}
func (s *spaceService) CreateSpace(ctx context.Context, payload SpaceCreatePayload) (id string, err error) {
storageCreate, err := storagePayloadForSpaceCreate(payload)
storageCreate, err := StoragePayloadForSpaceCreate(payload)
if err != nil {
return
}