William Petit
8e574c299b
All checks were successful
arcad/edge/pipeline/pr-master This commit looks good
12 lines
205 B
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}
|
|
}
|