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

Coordinator client methods and expose storage from start

This commit is contained in:
mcrakhman 2023-08-18 11:01:06 +02:00
parent 81b50a8766
commit eef2a0ff91
No known key found for this signature in database
GPG key ID: DED12CFEF5B8396B
3 changed files with 73 additions and 10 deletions

View file

@ -188,8 +188,9 @@ func (s *spaceService) NewSpace(ctx context.Context, id string) (Space, error) {
Register(headsync.New())
sp := &space{
state: state,
app: spaceApp,
state: state,
app: spaceApp,
storage: st,
}
return sp, nil
}