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