Codebase list golang-github-go-kit-kit / d2f2902b-79c4-43cd-8c09-341e33fc6017/v0.4.0 transport / grpc / _grpc_test / service.go
d2f2902b-79c4-43cd-8c09-341e33fc6017/v0.4.0

Tree @d2f2902b-79c4-43cd-8c09-341e33fc6017/v0.4.0 (Download .tar.gz)

service.go @d2f2902b-79c4-43cd-8c09-341e33fc6017/v0.4.0raw · 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
}