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