File tree Expand file tree Collapse file tree 3 files changed +5
-9
lines changed Expand file tree Collapse file tree 3 files changed +5
-9
lines changed Original file line number Diff line number Diff line change 1
1
PORT = 8000
2
2
3
+ GRPC_SERVER_ADDRESS = 0.0.0.0:8080
4
+
3
5
MONGO_INITDB_ROOT_USERNAME = root
4
6
MONGO_INITDB_ROOT_PASSWORD = password123
5
7
Original file line number Diff line number Diff line change @@ -4,7 +4,6 @@ package pb;
4
4
5
5
import "rpc_signin_user.proto" ;
6
6
import "rpc_signup_user.proto" ;
7
- import "rpc_verify_user.proto" ;
8
7
import "user.proto" ;
9
8
10
9
option go_package = "github.com/wpcodevo/golang-mongodb/pb" ;
@@ -13,4 +12,6 @@ service AuthService {
13
12
rpc SignUpUser (SignUpUserInput ) returns (GenericResponse ) {}
14
13
rpc SignInUser (SignInUserInput ) returns (SignInUserResponse ) {}
15
14
rpc VerifyEmail (VerifyEmailRequest ) returns (GenericResponse ) {}
16
- }
15
+ }
16
+
17
+ message VerifyEmailRequest { string verificationCode = 1 ; }
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments