This repository has been archived on 2023-11-13. You can view files and clone it, but cannot push or open issues or pull requests.
imagini/graph/resolver.go

18 lines
380 B
Go
Raw Normal View History

2021-02-02 20:34:10 +00:00
package graph
import (
2021-02-04 10:16:13 +00:00
"reichard.io/imagini/internal/auth"
2021-02-06 03:01:51 +00:00
"reichard.io/imagini/internal/config"
2021-02-04 10:16:13 +00:00
"reichard.io/imagini/internal/db"
2021-02-02 20:34:10 +00:00
)
// This file will not be regenerated automatically.
//
// It serves as dependency injection for your app, add any dependencies you require here.
2021-02-04 10:16:13 +00:00
type Resolver struct {
2021-02-06 03:01:51 +00:00
Config *config.Config
Auth *auth.AuthManager
DB *db.DBManager
2021-02-02 20:34:10 +00:00
}