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.45 import ( "context" "edge-infra.dev/pkg/edge/api/graph/model" ) // BootstrapCluster is the resolver for the bootstrapCluster field. func (r *mutationResolver) BootstrapCluster(ctx context.Context, payload model.BootstrapPayload) (*model.BootstrapResponse, error) { return r.beginBootstrapCluster(ctx, payload) } // TerminalBootstrap is the resolver for the terminalBootstrap field. func (r *queryResolver) TerminalBootstrap(ctx context.Context, macAddresses []string, edgeOSVersion *string) (*model.TerminalBootstrap, error) { return r.beginTerminalBootstrap(ctx, macAddresses, edgeOSVersion) }