├── vendor ├── golang.org │ └── x │ │ ├── sys │ │ ├── unix │ │ │ ├── .gitignore │ │ │ ├── asm.s │ │ │ ├── export_test.go │ │ │ ├── constants.go │ │ │ ├── syscall_no_getwd.go │ │ │ ├── zsysnum_solaris_amd64.go │ │ │ ├── env_unset.go │ │ │ ├── flock_linux_32bit.go │ │ │ ├── asm_solaris_amd64.s │ │ │ ├── gccgo_linux_amd64.go │ │ │ ├── race0.go │ │ │ ├── mmap_unix_test.go │ │ │ ├── syscall_freebsd_test.go │ │ │ ├── env_unix.go │ │ │ ├── asm_linux_arm64.s │ │ │ ├── str.go │ │ │ ├── race.go │ │ │ ├── asm_linux_s390x.s │ │ │ ├── asm_linux_ppc64x.s │ │ │ ├── asm_linux_arm.s │ │ │ ├── asm_linux_mips64x.s │ │ │ ├── asm_freebsd_arm.s │ │ │ ├── asm_netbsd_arm.s │ │ │ ├── asm_darwin_386.s │ │ │ ├── asm_freebsd_386.s │ │ │ ├── asm_netbsd_386.s │ │ │ ├── asm_openbsd_386.s │ │ │ ├── asm_darwin_amd64.s │ │ │ ├── asm_freebsd_amd64.s │ │ │ ├── asm_linux_amd64.s │ │ │ ├── asm_netbsd_amd64.s │ │ │ ├── asm_openbsd_amd64.s │ │ │ ├── asm_dragonfly_amd64.s │ │ │ ├── asm_darwin_arm.s │ │ │ ├── bluetooth_linux.go │ │ │ ├── asm_darwin_arm64.s │ │ │ ├── flock.go │ │ │ ├── mksysnum_darwin.pl │ │ │ ├── asm_linux_386.s │ │ │ └── syscall_solaris_amd64.go │ │ ├── codereview.cfg │ │ ├── .gitignore │ │ ├── AUTHORS │ │ ├── CONTRIBUTORS │ │ ├── README │ │ ├── plan9 │ │ │ ├── asm.s │ │ │ ├── env_unset.go │ │ │ ├── pwd_go15_plan9.go │ │ │ ├── pwd_plan9.go │ │ │ ├── race0.go │ │ │ ├── mksysnum_plan9.sh │ │ │ ├── str.go │ │ │ ├── env_plan9.go │ │ │ ├── race.go │ │ │ ├── asm_plan9_386.s │ │ │ ├── asm_plan9_amd64.s │ │ │ └── syscall_test.go │ │ ├── windows │ │ │ ├── svc │ │ │ │ ├── go12.go │ │ │ │ ├── example │ │ │ │ │ └── beep.go │ │ │ │ ├── go12.c │ │ │ │ └── go13.go │ │ │ ├── registry │ │ │ │ ├── mksyscall.go │ │ │ │ └── export_test.go │ │ │ ├── mksyscall.go │ │ │ ├── env_unset.go │ │ │ ├── asm_windows_386.s │ │ │ ├── asm_windows_amd64.s │ │ │ ├── race0.go │ │ │ ├── ztypes_windows_386.go │ │ │ ├── ztypes_windows_amd64.go │ │ │ ├── str.go │ │ │ ├── env_windows.go │ │ │ ├── race.go │ │ │ ├── eventlog.go │ │ │ └── syscall_test.go │ │ └── .gitattributes │ │ ├── net │ │ ├── codereview.cfg │ │ ├── http2 │ │ │ ├── .gitignore │ │ │ ├── h2demo │ │ │ │ ├── rootCA.srl │ │ │ │ ├── .gitignore │ │ │ │ ├── Makefile │ │ │ │ └── README │ │ │ ├── Makefile │ │ │ ├── errors_test.go │ │ │ ├── README │ │ │ └── gotrack_test.go │ │ ├── .gitignore │ │ ├── html │ │ │ ├── charset │ │ │ │ └── testdata │ │ │ │ │ ├── UTF-16BE-BOM.html │ │ │ │ │ ├── UTF-16LE-BOM.html │ │ │ │ │ └── README │ │ │ ├── testdata │ │ │ │ └── webkit │ │ │ │ │ ├── pending-spec-changes-plain-text-unsafe.dat │ │ │ │ │ ├── scripted │ │ │ │ │ ├── adoption01.dat │ │ │ │ │ └── webkit01.dat │ │ │ │ │ ├── adoption02.dat │ │ │ │ │ ├── inbody01.dat │ │ │ │ │ └── isindex.dat │ │ │ └── example_test.go │ │ ├── README │ │ ├── AUTHORS │ │ ├── CONTRIBUTORS │ │ ├── route │ │ │ ├── syscall.s │ │ │ ├── message_darwin_test.go │ │ │ ├── interface_announce.go │ │ │ ├── route_classic.go │ │ │ ├── interface_multicast.go │ │ │ ├── route_openbsd.go │ │ │ ├── sys.go │ │ │ └── syscall.go │ │ ├── ipv4 │ │ │ ├── thunk_linux_386.s │ │ │ ├── sys_stub.go │ │ │ ├── sockopt_stub.go │ │ │ ├── payload.go │ │ │ ├── bpfopt_stub.go │ │ │ ├── mocktransponder_test.go │ │ │ ├── sockopt_asmreqn_stub.go │ │ │ ├── sockopt_ssmreq_stub.go │ │ │ ├── icmp_stub.go │ │ │ ├── helper_stub.go │ │ │ ├── control_stub.go │ │ │ ├── sockopt_asmreq_stub.go │ │ │ ├── icmp_linux.go │ │ │ ├── zsys_netbsd.go │ │ │ ├── zsys_openbsd.go │ │ │ ├── control_windows.go │ │ │ ├── bpfopt_linux.go │ │ │ ├── zsys_dragonfly.go │ │ │ ├── genericopt_stub.go │ │ │ ├── syscall_unix.go │ │ │ └── syscall_linux_386.go │ │ ├── ipv6 │ │ │ ├── thunk_linux_386.s │ │ │ ├── sys_stub.go │ │ │ ├── sockopt_stub.go │ │ │ ├── payload.go │ │ │ ├── bpfopt_stub.go │ │ │ ├── helper_stub.go │ │ │ ├── sockopt_ssmreq_stub.go │ │ │ ├── icmp_stub.go │ │ │ ├── control_stub.go │ │ │ ├── icmp_solaris.go │ │ │ ├── sockopt_asmreq_windows.go │ │ │ ├── sockopt_asmreq_unix.go │ │ │ ├── icmp_windows.go │ │ │ ├── icmp_linux.go │ │ │ ├── mocktransponder_test.go │ │ │ ├── control_windows.go │ │ │ ├── icmp_bsd.go │ │ │ ├── bpfopt_linux.go │ │ │ ├── syscall_unix.go │ │ │ ├── genericopt_stub.go │ │ │ └── syscall_linux_386.go │ │ ├── internal │ │ │ └── nettest │ │ │ │ ├── rlimit_windows.go │ │ │ │ ├── rlimit_stub.go │ │ │ │ ├── error_stub.go │ │ │ │ ├── rlimit.go │ │ │ │ ├── stack_stub.go │ │ │ │ ├── rlimit_unix.go │ │ │ │ ├── stack_unix.go │ │ │ │ └── error_posix.go │ │ ├── icmp │ │ │ ├── sys_freebsd.go │ │ │ ├── helper.go │ │ │ └── ipv6.go │ │ ├── .gitattributes │ │ ├── proxy │ │ │ └── direct.go │ │ ├── webdav │ │ │ └── internal │ │ │ │ └── xml │ │ │ │ └── README │ │ ├── bpf │ │ │ └── testdata │ │ │ │ └── all_instructions.bpf │ │ ├── websocket │ │ │ ├── examplehandler_test.go │ │ │ └── exampledial_test.go │ │ └── context │ │ │ ├── ctxhttp │ │ │ └── ctxhttp_17_test.go │ │ │ └── withtimeout_test.go │ │ ├── crypto │ │ ├── codereview.cfg │ │ ├── .gitignore │ │ ├── ed25519 │ │ │ └── testdata │ │ │ │ └── sign.input.gz │ │ ├── sha3 │ │ │ ├── testdata │ │ │ │ └── keccakKats.json.deflate │ │ │ ├── keccakf_amd64.go │ │ │ ├── xor.go │ │ │ ├── register.go │ │ │ └── xor_generic.go │ │ ├── README │ │ ├── AUTHORS │ │ ├── CONTRIBUTORS │ │ ├── ssh │ │ │ ├── test │ │ │ │ ├── doc.go │ │ │ │ └── tcpip_test.go │ │ │ ├── terminal │ │ │ │ ├── util_bsd.go │ │ │ │ └── util_linux.go │ │ │ ├── testdata │ │ │ │ └── doc.go │ │ │ ├── tcpip_test.go │ │ │ └── doc.go │ │ ├── blake2b │ │ │ ├── blake2b_ref.go │ │ │ └── blake2b_amd64.go │ │ ├── .gitattributes │ │ ├── blake2s │ │ │ ├── blake2s_ref.go │ │ │ └── blake2s_386.go │ │ ├── chacha20poly1305 │ │ │ ├── chacha20poly1305_noasm.go │ │ │ └── internal │ │ │ │ └── chacha20 │ │ │ │ └── chacha_test.go │ │ ├── curve25519 │ │ │ ├── const_amd64.s │ │ │ └── curve25519_test.go │ │ ├── pkcs12 │ │ │ ├── internal │ │ │ │ └── rc2 │ │ │ │ │ └── bench_test.go │ │ │ └── errors.go │ │ ├── poly1305 │ │ │ ├── sum_amd64.go │ │ │ └── sum_arm.go │ │ ├── salsa20 │ │ │ └── salsa │ │ │ │ └── salsa20_amd64.go │ │ └── bcrypt │ │ │ └── base64.go │ │ └── oauth2 │ │ ├── google │ │ ├── testdata │ │ │ └── gcloud │ │ │ │ └── properties │ │ ├── appengine_hook.go │ │ └── appenginevm_hook.go │ │ ├── AUTHORS │ │ ├── CONTRIBUTORS │ │ ├── .travis.yml │ │ ├── vk │ │ └── vk.go │ │ ├── slack │ │ └── slack.go │ │ ├── uber │ │ └── uber.go │ │ ├── bitbucket │ │ └── bitbucket.go │ │ ├── heroku │ │ └── heroku.go │ │ ├── github │ │ └── github.go │ │ ├── fitbit │ │ └── fitbit.go │ │ ├── facebook │ │ └── facebook.go │ │ ├── foursquare │ │ └── foursquare.go │ │ ├── linkedin │ │ └── linkedin.go │ │ ├── microsoft │ │ └── microsoft.go │ │ ├── odnoklassniki │ │ └── odnoklassniki.go │ │ ├── client_appengine.go │ │ ├── mediamath │ │ └── mediamath.go │ │ ├── paypal │ │ └── paypal.go │ │ └── internal │ │ └── transport_test.go ├── github.com │ ├── digitalocean │ │ └── godo │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── doc.go │ │ │ ├── errors_test.go │ │ │ ├── CONTRIBUTING.md │ │ │ ├── errors.go │ │ │ ├── util │ │ │ └── droplet_test.go │ │ │ └── timestamp.go │ ├── tent │ │ └── http-link-go │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ └── README.md │ ├── google │ │ └── go-querystring │ │ │ └── .gitignore │ ├── robertkrimen │ │ └── otto │ │ │ ├── parser │ │ │ ├── Makefile │ │ │ ├── dbg.go │ │ │ └── scope.go │ │ │ ├── token │ │ │ └── Makefile │ │ │ ├── .gitignore │ │ │ ├── otto │ │ │ ├── Makefile │ │ │ └── main.go │ │ │ ├── DESIGN.markdown │ │ │ ├── type_number.go │ │ │ ├── dbg.go │ │ │ ├── clone_test.go │ │ │ ├── underscore │ │ │ └── Makefile │ │ │ ├── type_boolean.go │ │ │ ├── type_go_slice_test.go │ │ │ ├── cmpl.go │ │ │ ├── test │ │ │ └── Makefile │ │ │ ├── result.go │ │ │ ├── scope.go │ │ │ ├── value_primitive.go │ │ │ ├── type_error.go │ │ │ ├── builtin_boolean.go │ │ │ ├── value_boolean.go │ │ │ ├── registry │ │ │ ├── README.markdown │ │ │ └── registry.go │ │ │ └── parser_test.go │ └── golang │ │ └── protobuf │ │ ├── AUTHORS │ │ ├── CONTRIBUTORS │ │ └── .gitignore ├── gopkg.in │ ├── readline.v1 │ │ ├── .gitignore │ │ ├── utils_test.go │ │ ├── example │ │ │ ├── readline-im │ │ │ │ └── README.md │ │ │ ├── readline-remote │ │ │ │ ├── readline-remote-client │ │ │ │ │ └── client.go │ │ │ │ └── readline-remote-server │ │ │ │ │ └── server.go │ │ │ └── readline-multiline │ │ │ │ └── readline-multiline.go │ │ ├── std_windows.go │ │ ├── .travis.yml │ │ ├── term_bsd.go │ │ ├── term_linux.go │ │ ├── doc.go │ │ ├── debug.go │ │ ├── password.go │ │ ├── utils_windows.go │ │ └── char.go │ └── sourcemap.v1 │ │ ├── Makefile │ │ ├── .travis.yml │ │ ├── example_test.go │ │ └── README.md └── google.golang.org │ └── appengine │ ├── demos │ ├── guestbook │ │ ├── favicon.ico │ │ ├── index.yaml │ │ ├── app.yaml │ │ └── templates │ │ │ └── guestbook.html │ └── helloworld │ │ ├── favicon.ico │ │ └── app.yaml │ ├── internal │ ├── api_race_test.go │ ├── main.go │ ├── identity.go │ ├── base │ │ └── api_base.proto │ ├── capability │ │ └── capability_service.proto │ ├── channel │ │ └── channel_service.proto │ └── app_id.go │ ├── cloudsql │ ├── cloudsql_classic.go │ └── cloudsql_vm.go │ ├── socket │ └── doc.go │ ├── timeout.go │ ├── channel │ └── channel_test.go │ ├── .travis.yml │ ├── appengine_vm.go │ ├── aetest │ └── instance_classic.go │ ├── remote_api │ └── client_test.go │ ├── namespace.go │ ├── user │ └── user_classic.go │ ├── appengine_test.go │ └── file │ └── file.go ├── cmd └── dorepl │ └── README.md ├── NOTICE ├── .travis.yml ├── internal ├── ottoutil │ └── jsvendor │ │ └── corejs │ │ ├── corejs.go │ │ └── corejs_test.go └── godoutil │ └── iterate.go ├── glide.yaml ├── example └── script.js ├── appveyor.yml └── pkg └── extra └── do └── cloud ├── floatingips └── action.go ├── volumes └── action.go └── accounts └── client.go /vendor/golang.org/x/sys/unix/.gitignore: -------------------------------------------------------------------------------- 1 | _obj/ 2 | -------------------------------------------------------------------------------- /vendor/github.com/digitalocean/godo/.gitignore: -------------------------------------------------------------------------------- 1 | vendor/ 2 | -------------------------------------------------------------------------------- /vendor/github.com/tent/http-link-go/.gitignore: -------------------------------------------------------------------------------- 1 | *.test 2 | -------------------------------------------------------------------------------- /vendor/gopkg.in/readline.v1/.gitignore: -------------------------------------------------------------------------------- 1 | *.exe 2 | *.tmp 3 | -------------------------------------------------------------------------------- /vendor/github.com/google/go-querystring/.gitignore: -------------------------------------------------------------------------------- 1 | *.test 2 | -------------------------------------------------------------------------------- /vendor/golang.org/x/net/codereview.cfg: -------------------------------------------------------------------------------- 1 | issuerepo: golang/go 2 | -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | h2i/h2i 3 | -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/codereview.cfg: -------------------------------------------------------------------------------- 1 | issuerepo: golang/go 2 | -------------------------------------------------------------------------------- /vendor/gopkg.in/readline.v1/utils_test.go: -------------------------------------------------------------------------------- 1 | package readline 2 | -------------------------------------------------------------------------------- /cmd/dorepl/README.md: -------------------------------------------------------------------------------- 1 | # dorepl 2 | 3 | A repl for DigitalOcean. 4 | -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/codereview.cfg: -------------------------------------------------------------------------------- 1 | issuerepo: golang/go 2 | -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/h2demo/rootCA.srl: -------------------------------------------------------------------------------- 1 | E2CE26BF3285059C 2 | -------------------------------------------------------------------------------- /vendor/github.com/robertkrimen/otto/parser/Makefile: -------------------------------------------------------------------------------- 1 | .PHONY: test 2 | 3 | test: 4 | go test 5 | -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/Makefile: -------------------------------------------------------------------------------- 1 | curlimage: 2 | docker build -t gohttp2/curl . 3 | 4 | -------------------------------------------------------------------------------- /vendor/golang.org/x/oauth2/google/testdata/gcloud/properties: -------------------------------------------------------------------------------- 1 | [core] 2 | account = bar@example.com -------------------------------------------------------------------------------- /vendor/github.com/digitalocean/godo/.travis.yml: -------------------------------------------------------------------------------- 1 | language: go 2 | 3 | go: 4 | - 1.7 5 | - tip 6 | -------------------------------------------------------------------------------- /vendor/github.com/robertkrimen/otto/token/Makefile: -------------------------------------------------------------------------------- 1 | token_const.go: tokenfmt 2 | ./$^ | gofmt > $@ 3 | -------------------------------------------------------------------------------- /vendor/github.com/digitalocean/godo/doc.go: -------------------------------------------------------------------------------- 1 | // Package godo is the DigtalOcean API v2 client for Go 2 | package godo 3 | -------------------------------------------------------------------------------- /vendor/github.com/robertkrimen/otto/.gitignore: -------------------------------------------------------------------------------- 1 | /.test 2 | /otto/otto 3 | /otto/otto-* 4 | /test/test-*.js 5 | /test/tester 6 | -------------------------------------------------------------------------------- /vendor/golang.org/x/net/.gitignore: -------------------------------------------------------------------------------- 1 | # Add no patterns to .hgignore except for files generated by the build. 2 | last-change 3 | -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/.gitignore: -------------------------------------------------------------------------------- 1 | # Add no patterns to .hgignore except for files generated by the build. 2 | last-change 3 | -------------------------------------------------------------------------------- /vendor/github.com/robertkrimen/otto/otto/Makefile: -------------------------------------------------------------------------------- 1 | .PHONY: build 2 | 3 | build: 4 | go build -a 5 | -gxc build-darwin-386 -a 6 | -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/.gitignore: -------------------------------------------------------------------------------- 1 | # Add no patterns to .hgignore except for files generated by the build. 2 | last-change 3 | -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/h2demo/.gitignore: -------------------------------------------------------------------------------- 1 | h2demo 2 | h2demo.linux 3 | client-id.dat 4 | client-secret.dat 5 | token.dat 6 | -------------------------------------------------------------------------------- /vendor/github.com/robertkrimen/otto/DESIGN.markdown: -------------------------------------------------------------------------------- 1 | * Designate the filename of "anonymous" source code by the hash (md5/sha1, etc.) 2 | -------------------------------------------------------------------------------- /vendor/gopkg.in/sourcemap.v1/Makefile: -------------------------------------------------------------------------------- 1 | all: 2 | go test ./... -test.v -test.cpu=1,2,4 3 | go test ./... -test.v -test.short -test.race 4 | -------------------------------------------------------------------------------- /vendor/github.com/tent/http-link-go/.travis.yml: -------------------------------------------------------------------------------- 1 | language: go 2 | go: 3 | - 1.1 4 | - tip 5 | before_install: 6 | - go get launchpad.net/gocheck 7 | -------------------------------------------------------------------------------- /NOTICE: -------------------------------------------------------------------------------- 1 | godotto 2 | Copyright 2016 Antoine Grondin 3 | 4 | This product includes software developed at 5 | The Apache Software Foundation (http://www.apache.org/). 6 | -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ed25519/testdata/sign.input.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iheanyi/godotto/master/vendor/golang.org/x/crypto/ed25519/testdata/sign.input.gz -------------------------------------------------------------------------------- /vendor/google.golang.org/appengine/demos/guestbook/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iheanyi/godotto/master/vendor/google.golang.org/appengine/demos/guestbook/favicon.ico -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/sha3/testdata/keccakKats.json.deflate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iheanyi/godotto/master/vendor/golang.org/x/crypto/sha3/testdata/keccakKats.json.deflate -------------------------------------------------------------------------------- /vendor/golang.org/x/net/html/charset/testdata/UTF-16BE-BOM.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iheanyi/godotto/master/vendor/golang.org/x/net/html/charset/testdata/UTF-16BE-BOM.html -------------------------------------------------------------------------------- /vendor/golang.org/x/net/html/charset/testdata/UTF-16LE-BOM.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iheanyi/godotto/master/vendor/golang.org/x/net/html/charset/testdata/UTF-16LE-BOM.html -------------------------------------------------------------------------------- /vendor/google.golang.org/appengine/demos/guestbook/index.yaml: -------------------------------------------------------------------------------- 1 | indexes: 2 | 3 | - kind: Greeting 4 | ancestor: yes 5 | properties: 6 | - name: Date 7 | direction: desc 8 | -------------------------------------------------------------------------------- /vendor/google.golang.org/appengine/demos/helloworld/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iheanyi/godotto/master/vendor/google.golang.org/appengine/demos/helloworld/favicon.ico -------------------------------------------------------------------------------- /vendor/golang.org/x/net/README: -------------------------------------------------------------------------------- 1 | This repository holds supplementary Go networking libraries. 2 | 3 | To submit changes to this repository, see http://golang.org/doc/contribute.html. 4 | -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/README: -------------------------------------------------------------------------------- 1 | This repository holds supplementary Go cryptography libraries. 2 | 3 | To submit changes to this repository, see http://golang.org/doc/contribute.html. 4 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- 1 | language: go 2 | go: 3 | - 1.7 4 | sudo: false 5 | install: 6 | - go get github.com/Masterminds/glide 7 | script: $GOPATH/bin/glide -version && go test $($GOPATH/bin/glide nv) 8 | -------------------------------------------------------------------------------- /vendor/github.com/robertkrimen/otto/type_number.go: -------------------------------------------------------------------------------- 1 | package otto 2 | 3 | func (runtime *_runtime) newNumberObject(value Value) *_object { 4 | return runtime.newPrimitiveObject("Number", value.numberValue()) 5 | } 6 | -------------------------------------------------------------------------------- /vendor/golang.org/x/net/AUTHORS: -------------------------------------------------------------------------------- 1 | # This source code refers to The Go Authors for copyright purposes. 2 | # The master list of authors is in the main Go distribution, 3 | # visible at http://tip.golang.org/AUTHORS. 4 | -------------------------------------------------------------------------------- /vendor/golang.org/x/net/CONTRIBUTORS: -------------------------------------------------------------------------------- 1 | # This source code was written by the Go contributors. 2 | # The master list of contributors is in the main Go distribution, 3 | # visible at http://tip.golang.org/CONTRIBUTORS. 4 | -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/AUTHORS: -------------------------------------------------------------------------------- 1 | # This source code refers to The Go Authors for copyright purposes. 2 | # The master list of authors is in the main Go distribution, 3 | # visible at http://tip.golang.org/AUTHORS. 4 | -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/CONTRIBUTORS: -------------------------------------------------------------------------------- 1 | # This source code was written by the Go contributors. 2 | # The master list of contributors is in the main Go distribution, 3 | # visible at http://tip.golang.org/CONTRIBUTORS. 4 | -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/AUTHORS: -------------------------------------------------------------------------------- 1 | # This source code refers to The Go Authors for copyright purposes. 2 | # The master list of authors is in the main Go distribution, 3 | # visible at http://tip.golang.org/AUTHORS. 4 | -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/CONTRIBUTORS: -------------------------------------------------------------------------------- 1 | # This source code was written by the Go contributors. 2 | # The master list of contributors is in the main Go distribution, 3 | # visible at http://tip.golang.org/CONTRIBUTORS. 4 | -------------------------------------------------------------------------------- /vendor/golang.org/x/oauth2/AUTHORS: -------------------------------------------------------------------------------- 1 | # This source code refers to The Go Authors for copyright purposes. 2 | # The master list of authors is in the main Go distribution, 3 | # visible at http://tip.golang.org/AUTHORS. 4 | -------------------------------------------------------------------------------- /vendor/golang.org/x/oauth2/CONTRIBUTORS: -------------------------------------------------------------------------------- 1 | # This source code was written by the Go contributors. 2 | # The master list of contributors is in the main Go distribution, 3 | # visible at http://tip.golang.org/CONTRIBUTORS. 4 | -------------------------------------------------------------------------------- /vendor/gopkg.in/readline.v1/example/readline-im/README.md: -------------------------------------------------------------------------------- 1 | # readline-im 2 | 3 |  4 | -------------------------------------------------------------------------------- /vendor/github.com/golang/protobuf/AUTHORS: -------------------------------------------------------------------------------- 1 | # This source code refers to The Go Authors for copyright purposes. 2 | # The master list of authors is in the main Go distribution, 3 | # visible at http://tip.golang.org/AUTHORS. 4 | -------------------------------------------------------------------------------- /vendor/github.com/golang/protobuf/CONTRIBUTORS: -------------------------------------------------------------------------------- 1 | # This source code was written by the Go contributors. 2 | # The master list of contributors is in the main Go distribution, 3 | # visible at http://tip.golang.org/CONTRIBUTORS. 4 | -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/README: -------------------------------------------------------------------------------- 1 | This repository holds supplemental Go packages for low-level interactions with the operating system. 2 | 3 | To submit changes to this repository, see http://golang.org/doc/contribute.html. 4 | -------------------------------------------------------------------------------- /vendor/gopkg.in/readline.v1/std_windows.go: -------------------------------------------------------------------------------- 1 | // +build windows 2 | 3 | package readline 4 | 5 | func init() { 6 | Stdin = NewRawReader() 7 | Stdout = NewANSIWriter(Stdout) 8 | Stderr = NewANSIWriter(Stderr) 9 | } 10 | -------------------------------------------------------------------------------- /vendor/golang.org/x/net/html/testdata/webkit/pending-spec-changes-plain-text-unsafe.dat: -------------------------------------------------------------------------------- 1 | #data 2 |