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

14 lines
186 B
Go
Raw Normal View History

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