mirror of
https://github.com/cubixle/tuugen.git
synced 2026-04-30 09:48:40 +01:00
initial commit
This commit is contained in:
@@ -0,0 +1,15 @@
|
||||
syntax = "proto3";
|
||||
|
||||
package service;
|
||||
|
||||
option go_package = 'internal/pb/service';
|
||||
|
||||
service Service {
|
||||
rpc CreateUser(User) returns (User) {};
|
||||
}
|
||||
|
||||
message User {
|
||||
string name = 1;
|
||||
string team_id = 2;
|
||||
string email = 3;
|
||||
}
|
||||
Reference in New Issue
Block a user