Files
query-orchestration/internal/document/service.go
T
Michael McGuinness 62886dbba8 Merged in feature/removejob (pull request #95)
Remove Job

* removejob

* rmjob

* sync

* cleanup

* precommit

* startslow

* startslow

* startslow

* openapi

* clean

* test

* scripts

* littlecleanercmds

* mermaid
2025-03-10 11:03:00 +00:00

29 lines
384 B
Go

package document
import (
"queryorchestration/internal/serviceconfig"
"github.com/google/uuid"
)
type Location struct {
Bucket string
Key string
}
type Document struct {
ID uuid.UUID
ClientID uuid.UUID
Hash string
}
type Service struct {
cfg serviceconfig.ConfigProvider
}
func New(cfg serviceconfig.ConfigProvider) *Service {
return &Service{
cfg,
}
}