mirror of
https://github.com/ClusterCockpit/cc-backend
synced 2024-11-10 17:07:26 +01:00
16 lines
332 B
Go
16 lines
332 B
Go
package graph
|
|
|
|
import (
|
|
"github.com/ClusterCockpit/cc-backend/internal/repository"
|
|
"github.com/jmoiron/sqlx"
|
|
)
|
|
|
|
// This file will not be regenerated automatically.
|
|
//
|
|
// It serves as dependency injection for your app, add any dependencies you require here.
|
|
|
|
type Resolver struct {
|
|
DB *sqlx.DB
|
|
Repo *repository.JobRepository
|
|
}
|