chore(proto): update proto

This commit is contained in:
bandl 2021-10-06 20:34:47 +08:00
parent 101059126c
commit 554f7feef9
1 changed files with 1 additions and 2 deletions

View File

@ -15,8 +15,7 @@ func TestServerSingle_Get(t *testing.T) {
ctx := context.Background()
cli := proto.NewCommServerClient(comm)
resp, err := cli.Get(ctx, &proto.GetRequest{
})
resp, err := cli.Get(ctx, &proto.GetRequest{})
require.NoError(t, err)
fmt.Println(resp)
}