vitess-gh/go
Alain Jobart d807daa050 Fixing a few more proto equals.
BUG=37574309
2017-05-19 08:59:42 -07:00
..
acl
cache
cacheservice
cgzip
cmd Merging go/mysql/replication into go/mysql. 2017-05-18 09:25:15 -07:00
event
ewma
exit
fileutil
flagutil
hack
history
ioutil2
memcache
mysql Fixing all context imports. 2017-05-18 09:56:17 -07:00
netutil
pools
proc
race
ratelimiter
sqltypes
stats
streamlog
sync2
tb
testfiles
timer
trace
vt Fixing a few more proto equals. 2017-05-19 08:59:42 -07:00
zk
README.md

README.md

This directory contains all the Go code for Vitess.

Most of the packages at the top level are general-purpose and are suitable for use outside Vitess. Packages that are specific to Vitess are in the vt subdirectory. Binaries are in the cmd subdirectory.

Please see GoDoc for a listing of the packages and their purposes.

vt/proto contains the compiled protos for go, one per each directory. When importing these protos (for instance XXX.proto), we rename them on import to XXXpb. For instance:

import (
    topodatapb "github.com/youtube/vitess/go/vt/proto/topodata"
)