authorizer/server/resolvers/verify_otp.go

13 lines
280 B
Go
Raw Normal View History

2022-07-23 11:14:39 +00:00
package resolvers
import (
"context"
"github.com/authorizerdev/authorizer/server/graph/model"
)
// VerifyOtpResolver resolver for verify otp mutation
func VerifyOtpResolver(ctx context.Context, params model.VerifyOTPRequest) (*model.AuthResponse, error) {
return nil, nil
}