mirror of
https://github.com/cubixle/tuugen.git
synced 2026-04-25 00:24:46 +01:00
16 lines
231 B
Protocol Buffer
16 lines
231 B
Protocol Buffer
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;
|
|
}
|