Codebase list golang-github-go-kit-kit / 3b9658d9-4065-4804-9af8-16961c419f60/v0.4.0 transport / grpc / _grpc_test / service.go
3b9658d9-4065-4804-9af8-16961c419f60/v0.4.0

Tree @3b9658d9-4065-4804-9af8-16961c419f60/v0.4.0 (Download .tar.gz)

service.go @3b9658d9-4065-4804-9af8-16961c419f60/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
}