rano/graph/account.resolvers.go

33 lines
1.2 KiB
Go
Raw Permalink Normal View History

2024-11-01 14:25:30 +00:00
package graph
// 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.56
2024-11-01 14:25:30 +00:00
import (
"context"
"fmt"
2024-11-01 17:49:56 +00:00
"gitserver.in/patialtech/rano/graph/model"
2024-11-01 14:25:30 +00:00
)
2024-11-17 16:58:29 +00:00
// AccountVerifyEmail is the resolver for the accountVerifyEmail field.
func (r *mutationResolver) AccountVerifyEmail(ctx context.Context, token *string) (bool, error) {
panic(fmt.Errorf("not implemented: AccountVerifyEmail - accountVerifyEmail"))
2024-11-01 14:25:30 +00:00
}
2024-11-17 16:58:29 +00:00
// AccountLogin is the resolver for the accountLogin field.
func (r *mutationResolver) AccountLogin(ctx context.Context, email string, pwd string) (*model.AuthUser, error) {
panic(fmt.Errorf("not implemented: AccountLogin - accountLogin"))
}
// AccountLogout is the resolver for the accountLogout field.
func (r *mutationResolver) AccountLogout(ctx context.Context) (bool, error) {
panic(fmt.Errorf("not implemented: AccountLogout - accountLogout"))
2024-11-01 14:25:30 +00:00
}
2024-11-01 17:49:56 +00:00
// Me is the resolver for the me field.
func (r *queryResolver) Me(ctx context.Context) (*model.AuthUser, error) {
panic(fmt.Errorf("not implemented: Me - me"))
}