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