package server import "forge.cadoles.com/arcad/edge/pkg/storage" type DocumentStore struct { store storage.DocumentStore } func NewDocumentStore(store storage.DocumentStore) *DocumentStore { return &DocumentStore{store} }