Closed erizocosmico closed 7 years ago
Consider the following method:
package foo func (s *FooStore) Foo(f *Foo) { /* impl */ }
This would generate:
func (s *fooServiceServer) FooStore_Foo(ctx context.Context, in *foo.Foo) (*FooStore_FooResponse, error) { /* impl */
instead of in *foo.Foo, should be in *Foo as they are in the same package
in *foo.Foo
in *Foo
Consider the following method:
This would generate:
instead of
in *foo.Foo
, should bein *Foo
as they are in the same package