12 lines
311 B
Go
12 lines
311 B
Go
package graph
|
|
|
|
import "git.squidspirit.com/squid/blog.git/backend/internal/application"
|
|
|
|
// This file will not be regenerated automatically.
|
|
//
|
|
// It serves as dependency injection for your app, add any dependencies you require here.
|
|
|
|
type Resolver struct {
|
|
GetAllPostsUseCase application.GetAllPostsUseCase
|
|
}
|