vitess-gh/go
Sugu Sougoumarane 9238e401d6
Merge pull request #5353 from hwdef/add-license1
update license
2019-10-27 17:34:00 -07:00
..
acl add license in /go file 2019-10-21 22:30:02 +08:00
bucketpool Improve the quality of the documents 2019-09-27 16:03:33 +08:00
bytes2 add license in /go file 2019-10-21 22:30:02 +08:00
cache add license in /go file 2019-10-21 22:30:02 +08:00
cacheservice add license in /go file 2019-10-21 22:30:02 +08:00
cmd add license in /go file 2019-10-21 22:30:02 +08:00
event add license in /go file 2019-10-21 22:30:02 +08:00
exit add license in /go file 2019-10-21 22:30:02 +08:00
fileutil add license in /go file 2019-10-21 22:30:02 +08:00
flagutil add license in /go file 2019-10-21 22:30:02 +08:00
hack add license in /go file 2019-10-21 22:30:02 +08:00
history add license in /go file 2019-10-21 22:30:02 +08:00
ioutil2 add license in /go file 2019-10-21 22:30:02 +08:00
json2 add license in /go file 2019-10-21 22:30:02 +08:00
jsonutil add license in /go file 2019-10-21 22:30:02 +08:00
memcache add license in /go file 2019-10-21 22:30:02 +08:00
mysql Merge pull request #5331 from yuxiaobo96/vitess-license2 2019-10-23 21:49:44 -07:00
netutil add license in /go file 2019-10-21 22:30:02 +08:00
pools add license in /go file 2019-10-21 22:30:02 +08:00
proc add license in /go file 2019-10-21 22:30:02 +08:00
race add license in /go file 2019-10-21 22:30:02 +08:00
ratelimiter add license in /go file 2019-10-21 22:30:02 +08:00
sqlescape add license in /go file 2019-10-21 22:30:02 +08:00
sqltypes Merge pull request #5331 from yuxiaobo96/vitess-license2 2019-10-23 21:49:44 -07:00
stats add license in /go file 2019-10-21 22:30:02 +08:00
streamlog add license in /go file 2019-10-21 22:30:02 +08:00
sync2 add license in /go file 2019-10-21 22:30:02 +08:00
tb add license in /go file 2019-10-21 22:30:02 +08:00
testfiles add license in /go file 2019-10-21 22:30:02 +08:00
timer add license in /go file 2019-10-21 22:30:02 +08:00
trace add license in /go file 2019-10-21 22:30:02 +08:00
vt Merge pull request #5353 from hwdef/add-license1 2019-10-27 17:34:00 -07:00
vtbench add license in the rest of /go files 2019-10-22 00:18:03 +08:00
zk/zkctl Adding temporary link so travis passes. 2017-12-14 07:46:16 -08:00
README.md Change http to https for security links 2019-02-16 12:41:48 +07:00

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"
)