This commit is contained in:
Alain Jobart 2015-06-01 09:54:08 -07:00
Родитель ae1dfe8175
Коммит f21971dba9
1 изменённых файлов: 2 добавлений и 1 удалений

Просмотреть файл

@ -42,7 +42,8 @@ type OperationalError string
func (e OperationalError) Error() string { return string(e) }
// VTGateConn defines the interface for a vtgate client.
// VTGateConn is the client API object to talk to vtgate.
// It is constructed using the Dial method.
// It can be used concurrently across goroutines.
type VTGateConn struct {
impl Impl