Codebase list golang-github-go-kit-kit / 2677e49 transport / grpc / _grpc_test / service.go
2677e49

Tree @2677e49 (Download .tar.gz)

service.go @2677e49raw · history · blame

package test

import "context"

type Service interface {
	Test(ctx context.Context, a string, b int64) (context.Context, string, error)
}

type TestRequest struct {
	A string
	B int64
}

type TestResponse struct {
	Ctx context.Context
	V   string
}