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
2021-02-04 05:16:13 -05:00

16 lines
314 B
Go

package graph
import (
"reichard.io/imagini/internal/auth"
"reichard.io/imagini/internal/db"
)
// This file will not be regenerated automatically.
//
// It serves as dependency injection for your app, add any dependencies you require here.
type Resolver struct {
Auth *auth.AuthManager
DB *db.DBManager
}