12 lines
227 B
Go
12 lines
227 B
Go
|
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}
|
||
|
}
|