2022-09-27 13:31:50 +02:00

13 lines
220 B
Go

package storage
import (
"github.com/anytypeio/go-anytype-infrastructure-experiments/pkg/acl/storage"
)
const CName = "commonspace.storage"
type Storage interface {
storage.Provider
StoredIds() ([]string, error)
}