resolver.go 230 B

1234567891011121314
  1. package graph
  2. import (
  3. "gorm.io/gorm"
  4. )
  5. // This file will not be regenerated automatically.
  6. //
  7. // It serves as dependency injection for your app, add any dependencies you require
  8. // here.
  9. type Resolver struct {
  10. DB *gorm.DB
  11. }