1 package test 2 3 import "context" 4 5 type Service interface { 6 Test(ctx context.Context, a string, b int64) (context.Context, string, error) 7 } 8 9 type TestRequest struct { 10 A string 11 B int64 12 } 13 14 type TestResponse struct { 15 Ctx context.Context 16 V string 17 } 18