package resolver // This file will be automatically regenerated based on the schema, any resolver implementations // will be copied through when generating and any unknown code will be moved to the end. // Code generated by github.com/99designs/gqlgen version v0.17.68 import ( "context" "fmt" graphql1 "git.kmsign.ru/royalcat/tstor/plugins/qbittorrent/delivery/graphql" "git.kmsign.ru/royalcat/tstor/plugins/qbittorrent/delivery/graphql/model" ) // Cleanup is the resolver for the cleanup field. func (r *mutationResolver) Cleanup(ctx context.Context, run bool) (*model.CleanupResponse, error) { panic(fmt.Errorf("not implemented: Cleanup - cleanup")) } // CleanupUnregistred is the resolver for the cleanupUnregistred field. func (r *mutationResolver) CleanupUnregistred(ctx context.Context, run bool) (*model.CleanupUnregistredResponse, error) { panic(fmt.Errorf("not implemented: CleanupUnregistred - cleanupUnregistred")) } // Mutation returns graphql1.MutationResolver implementation. func (r *Resolver) Mutation() graphql1.MutationResolver { return &mutationResolver{r} } type mutationResolver struct{ *Resolver }