blob: d2e99ef2af9a6b5410efe340f0e6035ff669bf0e [file] [log] [blame]
D. Can Celasun4f77ab82017-09-21 15:21:00 +02001// +build !go1.7
2
3package thrift
4
5import "golang.org/x/net/context"
6
7type TClient interface {
8 Call(ctx context.Context, method string, args, result TStruct) error
9}
10
11func (p *TStandardClient) Call(ctx context.Context, method string, args, result TStruct) error {
12 return p.call(method, args, result)
13}