initial commit

This commit is contained in:
cubixle
2021-06-14 20:48:06 +01:00
commit a7ddf5c846
14 changed files with 384 additions and 0 deletions
+15
View File
@@ -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;
}