16 lines
314 B
Go
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
|
|
}
|