feat: add resolver for verify_otp
This commit is contained in:
12
server/resolvers/verify_otp.go
Normal file
12
server/resolvers/verify_otp.go
Normal file
@@ -0,0 +1,12 @@
|
||||
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
|
||||
}
|
Reference in New Issue
Block a user