Files
query-orchestration/internal/query/service.go
T

16 lines
215 B
Go
Raw Normal View History

2024-12-20 17:35:33 +00:00
package query
import (
"queryorchestration/internal/serviceconfig"
)
2024-12-23 16:01:54 +00:00
type Service struct {
cfg serviceconfig.ConfigProvider
2024-12-20 17:35:33 +00:00
}
func New(cfg serviceconfig.ConfigProvider) *Service {
2025-01-06 12:26:28 +00:00
return &Service{
cfg,
2025-01-06 12:26:28 +00:00
}
2024-12-20 17:35:33 +00:00
}