edge/pkg/storage/driver/rpc/server/document/service.go

12 lines
205 B
Go

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}
}