Codebase list golang-github-go-kit-kit / run/9467b73a-276a-4361-a91c-99b304659024/main transport / grpc / _grpc_test / service.go
run/9467b73a-276a-4361-a91c-99b304659024/main

Tree @run/9467b73a-276a-4361-a91c-99b304659024/main (Download .tar.gz)

service.go @run/9467b73a-276a-4361-a91c-99b304659024/mainraw · 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
}