14 lines
278 B
Go
14 lines
278 B
Go
package storage
|
|
|
|
import (
|
|
"github.com/anytypeio/go-anytype-infrastructure-experiments/app"
|
|
"github.com/anytypeio/go-anytype-infrastructure-experiments/pkg/acl/storage"
|
|
)
|
|
|
|
type Storage interface {
|
|
storage.Provider
|
|
app.ComponentRunnable
|
|
}
|
|
|
|
const CName = "commonspace.storage"
|