feat: add resolver for verify_otp

This commit is contained in:
Lakhan Samani
2022-07-23 16:44:39 +05:30
parent f6029fb7bf
commit 44280be25a
5 changed files with 149 additions and 2 deletions

View 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
}