vitess-gh/go
Arindam Nayak 93506294f6 Code coverage tracking (#11)
* added code coverage using sonar and codecov

Signed-off-by: Arindam Nayak <arindam.nayak@outlook.com>
Signed-off-by: Arindam Nayak <arindam.nayak@outlook.com>
2020-01-29 15:51:17 +05:30
..
acl
bucketpool
bytes2
cache
cacheservice
cmd
event
exit
fileutil
flagutil
hack
history
ioutil2
json2
jsonutil
memcache
mysql
netutil
pools
proc
race
ratelimiter
sqlescape
sqltypes
stats
streamlog
sync2
tb
test/endtoend Code coverage tracking (#11) 2020-01-29 15:51:17 +05:30
testfiles
timer
trace
visitorgen
vt Merge pull request #5766 from jmhodges/sync 2020-01-28 18:47:08 +01:00
vtbench
zk/zkctl
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 "vitess.io/vitess/go/vt/proto/topodata"
)