├── .editorconfig ├── .gitignore ├── CHANGELOG.md ├── Gopkg.lock ├── Gopkg.toml ├── LICENSE ├── Makefile ├── README.md ├── dao ├── dao-types.go ├── task-dao-factory.go ├── task-dao-mock.go ├── task-dao-mock_internal_test.go ├── task-dao-mock_test.go ├── task-dao-mongo.go ├── task-dao-mongo_test.go ├── task-dao-postgres.go ├── task-dao-postgres_test.go └── task-dao.go ├── doc └── img │ ├── concurrency.png │ ├── gopath_vendor.png │ ├── main_architecture.png │ └── web_architecture.png ├── docker ├── Dockerfile ├── Dockerfile.multi ├── databases.yml ├── docker-compose.yml ├── mongodb.yml └── postgresql.yml ├── etc ├── apiquery.sh ├── migrations │ ├── 1_create_todos_table.down.sql │ └── 1_create_todos_table.up.sql ├── todo_list_go.postman_collection.json ├── todohigh.json └── todomedium.json ├── model └── task.go ├── statistics ├── statistics.go └── statistics_test.go ├── todolist.go ├── utils ├── logger.go └── timetrack.go ├── vendor ├── github.com │ ├── bshuster-repo │ │ └── logrus-logstash-hook │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── logstash.go │ │ │ ├── logstash_formatter.go │ │ │ ├── logstash_formatter_test.go │ │ │ └── logstash_test.go │ ├── gorilla │ │ ├── context │ │ │ ├── .travis.yml │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── context.go │ │ │ ├── context_test.go │ │ │ └── doc.go │ │ └── mux │ │ │ ├── .travis.yml │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── bench_test.go │ │ │ ├── context_gorilla.go │ │ │ ├── context_gorilla_test.go │ │ │ ├── context_native.go │ │ │ ├── context_native_test.go │ │ │ ├── doc.go │ │ │ ├── mux.go │ │ │ ├── mux_test.go │ │ │ ├── old_test.go │ │ │ ├── regexp.go │ │ │ └── route.go │ ├── lib │ │ └── pq │ │ │ ├── .gitignore │ │ │ ├── .travis.sh │ │ │ ├── .travis.yml │ │ │ ├── CONTRIBUTING.md │ │ │ ├── LICENSE.md │ │ │ ├── README.md │ │ │ ├── array.go │ │ │ ├── array_test.go │ │ │ ├── bench_test.go │ │ │ ├── buf.go │ │ │ ├── certs │ │ │ ├── README │ │ │ ├── bogus_root.crt │ │ │ ├── postgresql.crt │ │ │ ├── postgresql.key │ │ │ ├── root.crt │ │ │ ├── server.crt │ │ │ └── server.key │ │ │ ├── conn.go │ │ │ ├── conn_go18.go │ │ │ ├── conn_test.go │ │ │ ├── copy.go │ │ │ ├── copy_test.go │ │ │ ├── doc.go │ │ │ ├── encode.go │ │ │ ├── encode_test.go │ │ │ ├── error.go │ │ │ ├── example │ │ │ └── listen │ │ │ │ └── doc.go │ │ │ ├── go18_test.go │ │ │ ├── hstore │ │ │ ├── hstore.go │ │ │ └── hstore_test.go │ │ │ ├── issues_test.go │ │ │ ├── notify.go │ │ │ ├── notify_test.go │ │ │ ├── oid │ │ │ ├── doc.go │ │ │ ├── gen.go │ │ │ └── types.go │ │ │ ├── rows.go │ │ │ ├── rows_test.go │ │ │ ├── ssl.go │ │ │ ├── ssl_go1.7.go │ │ │ ├── ssl_permissions.go │ │ │ ├── ssl_renegotiation.go │ │ │ ├── ssl_test.go │ │ │ ├── ssl_windows.go │ │ │ ├── url.go │ │ │ ├── url_test.go │ │ │ ├── user_posix.go │ │ │ ├── user_windows.go │ │ │ ├── uuid.go │ │ │ └── uuid_test.go │ ├── mattes │ │ └── migrate │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── CONTRIBUTING.md │ │ │ ├── FAQ.md │ │ │ ├── LICENSE │ │ │ ├── MIGRATIONS.md │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── cli │ │ │ ├── README.md │ │ │ ├── build_aws-s3.go │ │ │ ├── build_github.go │ │ │ ├── build_go-bindata.go │ │ │ ├── build_google-cloud-storage.go │ │ │ ├── build_mysql.go │ │ │ ├── build_postgres.go │ │ │ ├── build_ql.go │ │ │ ├── build_redshift.go │ │ │ ├── commands.go │ │ │ ├── examples │ │ │ │ └── Dockerfile │ │ │ ├── log.go │ │ │ ├── main.go │ │ │ └── version.go │ │ │ ├── database │ │ │ ├── cassandra │ │ │ │ └── README.md │ │ │ ├── crate │ │ │ │ └── README.md │ │ │ ├── driver.go │ │ │ ├── driver_test.go │ │ │ ├── error.go │ │ │ ├── mongodb │ │ │ │ └── README.md │ │ │ ├── mysql │ │ │ │ ├── README.md │ │ │ │ ├── mysql.go │ │ │ │ └── mysql_test.go │ │ │ ├── neo4j │ │ │ │ └── README.md │ │ │ ├── postgres │ │ │ │ ├── README.md │ │ │ │ ├── examples │ │ │ │ │ └── migrations │ │ │ │ │ │ ├── 1085649617_create_users_table.down.sql │ │ │ │ │ │ ├── 1085649617_create_users_table.up.sql │ │ │ │ │ │ ├── 1185749658_add_city_to_users.down.sql │ │ │ │ │ │ ├── 1185749658_add_city_to_users.up.sql │ │ │ │ │ │ ├── 1285849751_add_index_on_user_emails.down.sql │ │ │ │ │ │ ├── 1285849751_add_index_on_user_emails.up.sql │ │ │ │ │ │ ├── 1385949617_create_books_table.down.sql │ │ │ │ │ │ ├── 1385949617_create_books_table.up.sql │ │ │ │ │ │ ├── 1485949617_create_movies_table.down.sql │ │ │ │ │ │ ├── 1485949617_create_movies_table.up.sql │ │ │ │ │ │ ├── 1585849751_just_a_comment.up.sql │ │ │ │ │ │ ├── 1685849751_another_comment.up.sql │ │ │ │ │ │ ├── 1785849751_another_comment.up.sql │ │ │ │ │ │ └── 1885849751_another_comment.up.sql │ │ │ │ ├── postgres.go │ │ │ │ └── postgres_test.go │ │ │ ├── ql │ │ │ │ ├── README.md │ │ │ │ ├── migration │ │ │ │ │ ├── 33_create_table.down.sql │ │ │ │ │ ├── 33_create_table.up.sql │ │ │ │ │ ├── 44_alter_table.down.sql │ │ │ │ │ └── 44_alter_table.up.sql │ │ │ │ ├── ql.go │ │ │ │ └── ql_test.go │ │ │ ├── redshift │ │ │ │ ├── README.md │ │ │ │ └── redshift.go │ │ │ ├── shell │ │ │ │ └── README.md │ │ │ ├── sqlite │ │ │ │ └── README.md │ │ │ ├── stub │ │ │ │ ├── stub.go │ │ │ │ └── stub_test.go │ │ │ ├── testing │ │ │ │ └── testing.go │ │ │ ├── util.go │ │ │ └── util_test.go │ │ │ ├── log.go │ │ │ ├── migrate.go │ │ │ ├── migrate_test.go │ │ │ ├── migration.go │ │ │ ├── migration_test.go │ │ │ ├── source │ │ │ ├── aws-s3 │ │ │ │ ├── README.md │ │ │ │ ├── s3.go │ │ │ │ └── s3_test.go │ │ │ ├── driver.go │ │ │ ├── driver_test.go │ │ │ ├── file │ │ │ │ ├── README.md │ │ │ │ ├── file.go │ │ │ │ └── file_test.go │ │ │ ├── github │ │ │ │ ├── .gitignore │ │ │ │ ├── README.md │ │ │ │ ├── examples │ │ │ │ │ └── migrations │ │ │ │ │ │ ├── 1085649617_create_users_table.down.sql │ │ │ │ │ │ ├── 1085649617_create_users_table.up.sql │ │ │ │ │ │ ├── 1185749658_add_city_to_users.down.sql │ │ │ │ │ │ ├── 1185749658_add_city_to_users.up.sql │ │ │ │ │ │ ├── 1285849751_add_index_on_user_emails.down.sql │ │ │ │ │ │ ├── 1285849751_add_index_on_user_emails.up.sql │ │ │ │ │ │ ├── 1385949617_create_books_table.down.sql │ │ │ │ │ │ ├── 1385949617_create_books_table.up.sql │ │ │ │ │ │ ├── 1485949617_create_movies_table.down.sql │ │ │ │ │ │ ├── 1485949617_create_movies_table.up.sql │ │ │ │ │ │ ├── 1585849751_just_a_comment.up.sql │ │ │ │ │ │ ├── 1685849751_another_comment.up.sql │ │ │ │ │ │ ├── 1785849751_another_comment.up.sql │ │ │ │ │ │ └── 1885849751_another_comment.up.sql │ │ │ │ ├── github.go │ │ │ │ └── github_test.go │ │ │ ├── go-bindata │ │ │ │ ├── README.md │ │ │ │ ├── examples │ │ │ │ │ └── migrations │ │ │ │ │ │ └── bindata.go │ │ │ │ ├── go-bindata.go │ │ │ │ ├── go-bindata_test.go │ │ │ │ └── testdata │ │ │ │ │ └── bindata.go │ │ │ ├── google-cloud-storage │ │ │ │ ├── README.md │ │ │ │ ├── storage.go │ │ │ │ └── storage_test.go │ │ │ ├── migration.go │ │ │ ├── migration_test.go │ │ │ ├── parse.go │ │ │ ├── parse_test.go │ │ │ ├── stub │ │ │ │ ├── stub.go │ │ │ │ └── stub_test.go │ │ │ └── testing │ │ │ │ └── testing.go │ │ │ ├── testing │ │ │ ├── docker.go │ │ │ ├── testing.go │ │ │ └── testing_test.go │ │ │ ├── util.go │ │ │ └── util_test.go │ ├── meatballhat │ │ └── negroni-logrus │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── examples │ │ │ ├── basic │ │ │ │ └── example.go │ │ │ ├── custom │ │ │ │ └── example.go │ │ │ ├── existinglogrus │ │ │ │ └── example.go │ │ │ └── hooks │ │ │ │ └── example.go │ │ │ ├── middleware.go │ │ │ └── middleware_test.go │ ├── rs │ │ └── cors │ │ │ ├── .travis.yml │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── bench_test.go │ │ │ ├── cors.go │ │ │ ├── cors_test.go │ │ │ ├── examples │ │ │ ├── alice │ │ │ │ └── server.go │ │ │ ├── default │ │ │ │ └── server.go │ │ │ ├── goji │ │ │ │ └── server.go │ │ │ ├── gorilla │ │ │ │ └── server.go │ │ │ ├── httprouter │ │ │ │ └── server.go │ │ │ ├── martini │ │ │ │ └── server.go │ │ │ ├── negroni │ │ │ │ └── server.go │ │ │ ├── nethttp │ │ │ │ └── server.go │ │ │ └── openbar │ │ │ │ └── server.go │ │ │ ├── utils.go │ │ │ └── utils_test.go │ ├── satori │ │ └── go.uuid │ │ │ ├── .travis.yml │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── benchmarks_test.go │ │ │ ├── uuid.go │ │ │ └── uuid_test.go │ ├── sirupsen │ │ └── logrus │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── alt_exit.go │ │ │ ├── alt_exit_test.go │ │ │ ├── appveyor.yml │ │ │ ├── doc.go │ │ │ ├── entry.go │ │ │ ├── entry_test.go │ │ │ ├── example_basic_test.go │ │ │ ├── example_hook_test.go │ │ │ ├── exported.go │ │ │ ├── formatter.go │ │ │ ├── formatter_bench_test.go │ │ │ ├── hook_test.go │ │ │ ├── hooks.go │ │ │ ├── hooks │ │ │ ├── syslog │ │ │ │ ├── README.md │ │ │ │ ├── syslog.go │ │ │ │ └── syslog_test.go │ │ │ └── test │ │ │ │ ├── test.go │ │ │ │ └── test_test.go │ │ │ ├── json_formatter.go │ │ │ ├── json_formatter_test.go │ │ │ ├── logger.go │ │ │ ├── logger_bench_test.go │ │ │ ├── logrus.go │ │ │ ├── logrus_test.go │ │ │ ├── terminal_bsd.go │ │ │ ├── terminal_linux.go │ │ │ ├── text_formatter.go │ │ │ ├── text_formatter_test.go │ │ │ └── writer.go │ └── urfave │ │ └── negroni │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── doc.go │ │ ├── logger.go │ │ ├── logger_test.go │ │ ├── negroni.go │ │ ├── negroni_test.go │ │ ├── recovery.go │ │ ├── recovery_test.go │ │ ├── response_writer.go │ │ ├── response_writer_test.go │ │ ├── static.go │ │ ├── static_test.go │ │ └── translations │ │ ├── README_de_de.md │ │ ├── README_pt_br.md │ │ ├── README_zh_cn.md │ │ └── README_zh_tw.md ├── golang.org │ └── x │ │ ├── crypto │ │ ├── .gitattributes │ │ ├── .gitignore │ │ ├── AUTHORS │ │ ├── CONTRIBUTING.md │ │ ├── CONTRIBUTORS │ │ ├── LICENSE │ │ ├── PATENTS │ │ ├── README.md │ │ ├── acme │ │ │ ├── acme.go │ │ │ ├── acme_test.go │ │ │ ├── autocert │ │ │ │ ├── autocert.go │ │ │ │ ├── autocert_test.go │ │ │ │ ├── cache.go │ │ │ │ ├── cache_test.go │ │ │ │ ├── example_test.go │ │ │ │ ├── listener.go │ │ │ │ ├── renewal.go │ │ │ │ └── renewal_test.go │ │ │ ├── jws.go │ │ │ ├── jws_test.go │ │ │ ├── types.go │ │ │ └── types_test.go │ │ ├── bcrypt │ │ │ ├── base64.go │ │ │ ├── bcrypt.go │ │ │ └── bcrypt_test.go │ │ ├── blake2b │ │ │ ├── blake2b.go │ │ │ ├── blake2bAVX2_amd64.go │ │ │ ├── blake2bAVX2_amd64.s │ │ │ ├── blake2b_amd64.go │ │ │ ├── blake2b_amd64.s │ │ │ ├── blake2b_generic.go │ │ │ ├── blake2b_ref.go │ │ │ ├── blake2b_test.go │ │ │ ├── blake2x.go │ │ │ └── register.go │ │ ├── blake2s │ │ │ ├── blake2s.go │ │ │ ├── blake2s_386.go │ │ │ ├── blake2s_386.s │ │ │ ├── blake2s_amd64.go │ │ │ ├── blake2s_amd64.s │ │ │ ├── blake2s_generic.go │ │ │ ├── blake2s_ref.go │ │ │ ├── blake2s_test.go │ │ │ ├── blake2x.go │ │ │ └── register.go │ │ ├── blowfish │ │ │ ├── block.go │ │ │ ├── blowfish_test.go │ │ │ ├── cipher.go │ │ │ └── const.go │ │ ├── bn256 │ │ │ ├── bn256.go │ │ │ ├── bn256_test.go │ │ │ ├── constants.go │ │ │ ├── curve.go │ │ │ ├── example_test.go │ │ │ ├── gfp12.go │ │ │ ├── gfp2.go │ │ │ ├── gfp6.go │ │ │ ├── optate.go │ │ │ └── twist.go │ │ ├── cast5 │ │ │ ├── cast5.go │ │ │ └── cast5_test.go │ │ ├── chacha20poly1305 │ │ │ ├── chacha20poly1305.go │ │ │ ├── chacha20poly1305_amd64.go │ │ │ ├── chacha20poly1305_amd64.s │ │ │ ├── chacha20poly1305_generic.go │ │ │ ├── chacha20poly1305_noasm.go │ │ │ ├── chacha20poly1305_test.go │ │ │ ├── chacha20poly1305_vectors_test.go │ │ │ └── internal │ │ │ │ └── chacha20 │ │ │ │ ├── chacha_generic.go │ │ │ │ └── chacha_test.go │ │ ├── codereview.cfg │ │ ├── cryptobyte │ │ │ ├── asn1.go │ │ │ ├── asn1 │ │ │ │ └── asn1.go │ │ │ ├── asn1_test.go │ │ │ ├── builder.go │ │ │ ├── cryptobyte_test.go │ │ │ ├── example_test.go │ │ │ └── string.go │ │ ├── curve25519 │ │ │ ├── const_amd64.h │ │ │ ├── const_amd64.s │ │ │ ├── cswap_amd64.s │ │ │ ├── curve25519.go │ │ │ ├── curve25519_test.go │ │ │ ├── doc.go │ │ │ ├── freeze_amd64.s │ │ │ ├── ladderstep_amd64.s │ │ │ ├── mont25519_amd64.go │ │ │ ├── mul_amd64.s │ │ │ └── square_amd64.s │ │ ├── ed25519 │ │ │ ├── ed25519.go │ │ │ ├── ed25519_test.go │ │ │ └── internal │ │ │ │ └── edwards25519 │ │ │ │ ├── const.go │ │ │ │ └── edwards25519.go │ │ ├── hkdf │ │ │ ├── example_test.go │ │ │ ├── hkdf.go │ │ │ └── hkdf_test.go │ │ ├── md4 │ │ │ ├── example_test.go │ │ │ ├── md4.go │ │ │ ├── md4_test.go │ │ │ └── md4block.go │ │ ├── nacl │ │ │ ├── auth │ │ │ │ ├── auth.go │ │ │ │ ├── auth_test.go │ │ │ │ └── example_test.go │ │ │ ├── box │ │ │ │ ├── box.go │ │ │ │ ├── box_test.go │ │ │ │ └── example_test.go │ │ │ └── secretbox │ │ │ │ ├── example_test.go │ │ │ │ ├── secretbox.go │ │ │ │ └── secretbox_test.go │ │ ├── ocsp │ │ │ ├── ocsp.go │ │ │ └── ocsp_test.go │ │ ├── openpgp │ │ │ ├── armor │ │ │ │ ├── armor.go │ │ │ │ ├── armor_test.go │ │ │ │ └── encode.go │ │ │ ├── canonical_text.go │ │ │ ├── canonical_text_test.go │ │ │ ├── clearsign │ │ │ │ ├── clearsign.go │ │ │ │ └── clearsign_test.go │ │ │ ├── elgamal │ │ │ │ ├── elgamal.go │ │ │ │ └── elgamal_test.go │ │ │ ├── errors │ │ │ │ └── errors.go │ │ │ ├── keys.go │ │ │ ├── keys_test.go │ │ │ ├── packet │ │ │ │ ├── compressed.go │ │ │ │ ├── compressed_test.go │ │ │ │ ├── config.go │ │ │ │ ├── encrypted_key.go │ │ │ │ ├── encrypted_key_test.go │ │ │ │ ├── literal.go │ │ │ │ ├── ocfb.go │ │ │ │ ├── ocfb_test.go │ │ │ │ ├── one_pass_signature.go │ │ │ │ ├── opaque.go │ │ │ │ ├── opaque_test.go │ │ │ │ ├── packet.go │ │ │ │ ├── packet_test.go │ │ │ │ ├── private_key.go │ │ │ │ ├── private_key_test.go │ │ │ │ ├── public_key.go │ │ │ │ ├── public_key_test.go │ │ │ │ ├── public_key_v3.go │ │ │ │ ├── public_key_v3_test.go │ │ │ │ ├── reader.go │ │ │ │ ├── signature.go │ │ │ │ ├── signature_test.go │ │ │ │ ├── signature_v3.go │ │ │ │ ├── signature_v3_test.go │ │ │ │ ├── symmetric_key_encrypted.go │ │ │ │ ├── symmetric_key_encrypted_test.go │ │ │ │ ├── symmetrically_encrypted.go │ │ │ │ ├── symmetrically_encrypted_test.go │ │ │ │ ├── userattribute.go │ │ │ │ ├── userattribute_test.go │ │ │ │ ├── userid.go │ │ │ │ └── userid_test.go │ │ │ ├── read.go │ │ │ ├── read_test.go │ │ │ ├── s2k │ │ │ │ ├── s2k.go │ │ │ │ └── s2k_test.go │ │ │ ├── write.go │ │ │ └── write_test.go │ │ ├── otr │ │ │ ├── libotr_test_helper.c │ │ │ ├── otr.go │ │ │ ├── otr_test.go │ │ │ └── smp.go │ │ ├── pbkdf2 │ │ │ ├── pbkdf2.go │ │ │ └── pbkdf2_test.go │ │ ├── pkcs12 │ │ │ ├── bmp-string.go │ │ │ ├── bmp-string_test.go │ │ │ ├── crypto.go │ │ │ ├── crypto_test.go │ │ │ ├── errors.go │ │ │ ├── internal │ │ │ │ └── rc2 │ │ │ │ │ ├── bench_test.go │ │ │ │ │ ├── rc2.go │ │ │ │ │ └── rc2_test.go │ │ │ ├── mac.go │ │ │ ├── mac_test.go │ │ │ ├── pbkdf.go │ │ │ ├── pbkdf_test.go │ │ │ ├── pkcs12.go │ │ │ ├── pkcs12_test.go │ │ │ └── safebags.go │ │ ├── poly1305 │ │ │ ├── poly1305.go │ │ │ ├── poly1305_test.go │ │ │ ├── sum_amd64.go │ │ │ ├── sum_amd64.s │ │ │ ├── sum_arm.go │ │ │ ├── sum_arm.s │ │ │ └── sum_ref.go │ │ ├── ripemd160 │ │ │ ├── ripemd160.go │ │ │ ├── ripemd160_test.go │ │ │ └── ripemd160block.go │ │ ├── salsa20 │ │ │ ├── salsa │ │ │ │ ├── hsalsa20.go │ │ │ │ ├── salsa2020_amd64.s │ │ │ │ ├── salsa208.go │ │ │ │ ├── salsa20_amd64.go │ │ │ │ ├── salsa20_ref.go │ │ │ │ └── salsa_test.go │ │ │ ├── salsa20.go │ │ │ └── salsa20_test.go │ │ ├── scrypt │ │ │ ├── example_test.go │ │ │ ├── scrypt.go │ │ │ └── scrypt_test.go │ │ ├── sha3 │ │ │ ├── doc.go │ │ │ ├── hashes.go │ │ │ ├── keccakf.go │ │ │ ├── keccakf_amd64.go │ │ │ ├── keccakf_amd64.s │ │ │ ├── register.go │ │ │ ├── sha3.go │ │ │ ├── sha3_test.go │ │ │ ├── shake.go │ │ │ ├── testdata │ │ │ │ └── keccakKats.json.deflate │ │ │ ├── xor.go │ │ │ ├── xor_generic.go │ │ │ └── xor_unaligned.go │ │ ├── ssh │ │ │ ├── agent │ │ │ │ ├── client.go │ │ │ │ ├── client_test.go │ │ │ │ ├── example_test.go │ │ │ │ ├── forward.go │ │ │ │ ├── keyring.go │ │ │ │ ├── keyring_test.go │ │ │ │ ├── server.go │ │ │ │ ├── server_test.go │ │ │ │ └── testdata_test.go │ │ │ ├── benchmark_test.go │ │ │ ├── buffer.go │ │ │ ├── buffer_test.go │ │ │ ├── certs.go │ │ │ ├── certs_test.go │ │ │ ├── channel.go │ │ │ ├── cipher.go │ │ │ ├── cipher_test.go │ │ │ ├── client.go │ │ │ ├── client_auth.go │ │ │ ├── client_auth_test.go │ │ │ ├── client_test.go │ │ │ ├── common.go │ │ │ ├── connection.go │ │ │ ├── doc.go │ │ │ ├── example_test.go │ │ │ ├── handshake.go │ │ │ ├── handshake_test.go │ │ │ ├── kex.go │ │ │ ├── kex_test.go │ │ │ ├── keys.go │ │ │ ├── keys_test.go │ │ │ ├── knownhosts │ │ │ │ ├── knownhosts.go │ │ │ │ └── knownhosts_test.go │ │ │ ├── mac.go │ │ │ ├── mempipe_test.go │ │ │ ├── messages.go │ │ │ ├── messages_test.go │ │ │ ├── mux.go │ │ │ ├── mux_test.go │ │ │ ├── server.go │ │ │ ├── session.go │ │ │ ├── session_test.go │ │ │ ├── streamlocal.go │ │ │ ├── tcpip.go │ │ │ ├── tcpip_test.go │ │ │ ├── terminal │ │ │ │ ├── terminal.go │ │ │ │ ├── terminal_test.go │ │ │ │ ├── util.go │ │ │ │ ├── util_bsd.go │ │ │ │ ├── util_linux.go │ │ │ │ ├── util_plan9.go │ │ │ │ ├── util_solaris.go │ │ │ │ └── util_windows.go │ │ │ ├── test │ │ │ │ ├── agent_unix_test.go │ │ │ │ ├── cert_test.go │ │ │ │ ├── dial_unix_test.go │ │ │ │ ├── doc.go │ │ │ │ ├── forward_unix_test.go │ │ │ │ ├── session_test.go │ │ │ │ ├── test_unix_test.go │ │ │ │ └── testdata_test.go │ │ │ ├── testdata │ │ │ │ ├── doc.go │ │ │ │ └── keys.go │ │ │ ├── testdata_test.go │ │ │ ├── transport.go │ │ │ └── transport_test.go │ │ ├── tea │ │ │ ├── cipher.go │ │ │ └── tea_test.go │ │ ├── twofish │ │ │ ├── twofish.go │ │ │ └── twofish_test.go │ │ ├── xtea │ │ │ ├── block.go │ │ │ ├── cipher.go │ │ │ └── xtea_test.go │ │ └── xts │ │ │ ├── xts.go │ │ │ └── xts_test.go │ │ └── sys │ │ ├── .gitattributes │ │ ├── .gitignore │ │ ├── AUTHORS │ │ ├── CONTRIBUTING.md │ │ ├── CONTRIBUTORS │ │ ├── LICENSE │ │ ├── PATENTS │ │ ├── README.md │ │ ├── codereview.cfg │ │ ├── plan9 │ │ ├── asm.s │ │ ├── asm_plan9_386.s │ │ ├── asm_plan9_amd64.s │ │ ├── const_plan9.go │ │ ├── dir_plan9.go │ │ ├── env_plan9.go │ │ ├── env_unset.go │ │ ├── errors_plan9.go │ │ ├── mkall.sh │ │ ├── mkerrors.sh │ │ ├── mksyscall.pl │ │ ├── mksysnum_plan9.sh │ │ ├── pwd_go15_plan9.go │ │ ├── pwd_plan9.go │ │ ├── race.go │ │ ├── race0.go │ │ ├── str.go │ │ ├── syscall.go │ │ ├── syscall_plan9.go │ │ ├── syscall_test.go │ │ ├── zsyscall_plan9_386.go │ │ ├── zsyscall_plan9_amd64.go │ │ └── zsysnum_plan9.go │ │ ├── unix │ │ ├── .gitignore │ │ ├── README.md │ │ ├── asm_darwin_386.s │ │ ├── asm_darwin_amd64.s │ │ ├── asm_darwin_arm.s │ │ ├── asm_darwin_arm64.s │ │ ├── asm_dragonfly_amd64.s │ │ ├── asm_freebsd_386.s │ │ ├── asm_freebsd_amd64.s │ │ ├── asm_freebsd_arm.s │ │ ├── asm_linux_386.s │ │ ├── asm_linux_amd64.s │ │ ├── asm_linux_arm.s │ │ ├── asm_linux_arm64.s │ │ ├── asm_linux_mips64x.s │ │ ├── asm_linux_mipsx.s │ │ ├── asm_linux_ppc64x.s │ │ ├── asm_linux_s390x.s │ │ ├── asm_netbsd_386.s │ │ ├── asm_netbsd_amd64.s │ │ ├── asm_netbsd_arm.s │ │ ├── asm_openbsd_386.s │ │ ├── asm_openbsd_amd64.s │ │ ├── asm_openbsd_arm.s │ │ ├── asm_solaris_amd64.s │ │ ├── bluetooth_linux.go │ │ ├── cap_freebsd.go │ │ ├── constants.go │ │ ├── creds_test.go │ │ ├── dev_darwin.go │ │ ├── dev_darwin_test.go │ │ ├── dev_dragonfly.go │ │ ├── dev_dragonfly_test.go │ │ ├── dev_freebsd.go │ │ ├── dev_linux.go │ │ ├── dev_linux_test.go │ │ ├── dev_netbsd.go │ │ ├── dev_netbsd_test.go │ │ ├── dev_openbsd.go │ │ ├── dev_openbsd_test.go │ │ ├── dev_solaris_test.go │ │ ├── dirent.go │ │ ├── endian_big.go │ │ ├── endian_little.go │ │ ├── env_unix.go │ │ ├── env_unset.go │ │ ├── errors_freebsd_386.go │ │ ├── errors_freebsd_amd64.go │ │ ├── errors_freebsd_arm.go │ │ ├── export_test.go │ │ ├── file_unix.go │ │ ├── flock.go │ │ ├── flock_linux_32bit.go │ │ ├── gccgo.go │ │ ├── gccgo_c.c │ │ ├── gccgo_linux_amd64.go │ │ ├── linux │ │ │ ├── Dockerfile │ │ │ ├── mkall.go │ │ │ ├── mksysnum.pl │ │ │ └── types.go │ │ ├── mkall.sh │ │ ├── mkerrors.sh │ │ ├── mkpost.go │ │ ├── mksyscall.pl │ │ ├── mksyscall_solaris.pl │ │ ├── mksysctl_openbsd.pl │ │ ├── mksysnum_darwin.pl │ │ ├── mksysnum_dragonfly.pl │ │ ├── mksysnum_freebsd.pl │ │ ├── mksysnum_netbsd.pl │ │ ├── mksysnum_openbsd.pl │ │ ├── mmap_unix_test.go │ │ ├── openbsd_pledge.go │ │ ├── openbsd_test.go │ │ ├── pagesize_unix.go │ │ ├── race.go │ │ ├── race0.go │ │ ├── sockcmsg_linux.go │ │ ├── sockcmsg_unix.go │ │ ├── str.go │ │ ├── syscall.go │ │ ├── syscall_bsd.go │ │ ├── syscall_bsd_test.go │ │ ├── syscall_darwin.go │ │ ├── syscall_darwin_386.go │ │ ├── syscall_darwin_amd64.go │ │ ├── syscall_darwin_arm.go │ │ ├── syscall_darwin_arm64.go │ │ ├── syscall_dragonfly.go │ │ ├── syscall_dragonfly_amd64.go │ │ ├── syscall_freebsd.go │ │ ├── syscall_freebsd_386.go │ │ ├── syscall_freebsd_amd64.go │ │ ├── syscall_freebsd_arm.go │ │ ├── syscall_freebsd_test.go │ │ ├── syscall_linux.go │ │ ├── syscall_linux_386.go │ │ ├── syscall_linux_amd64.go │ │ ├── syscall_linux_amd64_gc.go │ │ ├── syscall_linux_arm.go │ │ ├── syscall_linux_arm64.go │ │ ├── syscall_linux_mips64x.go │ │ ├── syscall_linux_mipsx.go │ │ ├── syscall_linux_ppc64x.go │ │ ├── syscall_linux_s390x.go │ │ ├── syscall_linux_sparc64.go │ │ ├── syscall_linux_test.go │ │ ├── syscall_netbsd.go │ │ ├── syscall_netbsd_386.go │ │ ├── syscall_netbsd_amd64.go │ │ ├── syscall_netbsd_arm.go │ │ ├── syscall_no_getwd.go │ │ ├── syscall_openbsd.go │ │ ├── syscall_openbsd_386.go │ │ ├── syscall_openbsd_amd64.go │ │ ├── syscall_openbsd_arm.go │ │ ├── syscall_solaris.go │ │ ├── syscall_solaris_amd64.go │ │ ├── syscall_solaris_test.go │ │ ├── syscall_test.go │ │ ├── syscall_unix.go │ │ ├── syscall_unix_gc.go │ │ ├── syscall_unix_test.go │ │ ├── types_darwin.go │ │ ├── types_dragonfly.go │ │ ├── types_freebsd.go │ │ ├── types_netbsd.go │ │ ├── types_openbsd.go │ │ ├── types_solaris.go │ │ ├── zerrors_darwin_386.go │ │ ├── zerrors_darwin_amd64.go │ │ ├── zerrors_darwin_arm.go │ │ ├── zerrors_darwin_arm64.go │ │ ├── zerrors_dragonfly_amd64.go │ │ ├── zerrors_freebsd_386.go │ │ ├── zerrors_freebsd_amd64.go │ │ ├── zerrors_freebsd_arm.go │ │ ├── zerrors_linux_386.go │ │ ├── zerrors_linux_amd64.go │ │ ├── zerrors_linux_arm.go │ │ ├── zerrors_linux_arm64.go │ │ ├── zerrors_linux_mips.go │ │ ├── zerrors_linux_mips64.go │ │ ├── zerrors_linux_mips64le.go │ │ ├── zerrors_linux_mipsle.go │ │ ├── zerrors_linux_ppc64.go │ │ ├── zerrors_linux_ppc64le.go │ │ ├── zerrors_linux_s390x.go │ │ ├── zerrors_linux_sparc64.go │ │ ├── zerrors_netbsd_386.go │ │ ├── zerrors_netbsd_amd64.go │ │ ├── zerrors_netbsd_arm.go │ │ ├── zerrors_openbsd_386.go │ │ ├── zerrors_openbsd_amd64.go │ │ ├── zerrors_openbsd_arm.go │ │ ├── zerrors_solaris_amd64.go │ │ ├── zsyscall_darwin_386.go │ │ ├── zsyscall_darwin_amd64.go │ │ ├── zsyscall_darwin_arm.go │ │ ├── zsyscall_darwin_arm64.go │ │ ├── zsyscall_dragonfly_amd64.go │ │ ├── zsyscall_freebsd_386.go │ │ ├── zsyscall_freebsd_amd64.go │ │ ├── zsyscall_freebsd_arm.go │ │ ├── zsyscall_linux_386.go │ │ ├── zsyscall_linux_amd64.go │ │ ├── zsyscall_linux_arm.go │ │ ├── zsyscall_linux_arm64.go │ │ ├── zsyscall_linux_mips.go │ │ ├── zsyscall_linux_mips64.go │ │ ├── zsyscall_linux_mips64le.go │ │ ├── zsyscall_linux_mipsle.go │ │ ├── zsyscall_linux_ppc64.go │ │ ├── zsyscall_linux_ppc64le.go │ │ ├── zsyscall_linux_s390x.go │ │ ├── zsyscall_linux_sparc64.go │ │ ├── zsyscall_netbsd_386.go │ │ ├── zsyscall_netbsd_amd64.go │ │ ├── zsyscall_netbsd_arm.go │ │ ├── zsyscall_openbsd_386.go │ │ ├── zsyscall_openbsd_amd64.go │ │ ├── zsyscall_openbsd_arm.go │ │ ├── zsyscall_solaris_amd64.go │ │ ├── zsysctl_openbsd.go │ │ ├── zsysnum_darwin_386.go │ │ ├── zsysnum_darwin_amd64.go │ │ ├── zsysnum_darwin_arm.go │ │ ├── zsysnum_darwin_arm64.go │ │ ├── zsysnum_dragonfly_amd64.go │ │ ├── zsysnum_freebsd_386.go │ │ ├── zsysnum_freebsd_amd64.go │ │ ├── zsysnum_freebsd_arm.go │ │ ├── zsysnum_linux_386.go │ │ ├── zsysnum_linux_amd64.go │ │ ├── zsysnum_linux_arm.go │ │ ├── zsysnum_linux_arm64.go │ │ ├── zsysnum_linux_mips.go │ │ ├── zsysnum_linux_mips64.go │ │ ├── zsysnum_linux_mips64le.go │ │ ├── zsysnum_linux_mipsle.go │ │ ├── zsysnum_linux_ppc64.go │ │ ├── zsysnum_linux_ppc64le.go │ │ ├── zsysnum_linux_s390x.go │ │ ├── zsysnum_linux_sparc64.go │ │ ├── zsysnum_netbsd_386.go │ │ ├── zsysnum_netbsd_amd64.go │ │ ├── zsysnum_netbsd_arm.go │ │ ├── zsysnum_openbsd_386.go │ │ ├── zsysnum_openbsd_amd64.go │ │ ├── zsysnum_openbsd_arm.go │ │ ├── zsysnum_solaris_amd64.go │ │ ├── ztypes_darwin_386.go │ │ ├── ztypes_darwin_amd64.go │ │ ├── ztypes_darwin_arm.go │ │ ├── ztypes_darwin_arm64.go │ │ ├── ztypes_dragonfly_amd64.go │ │ ├── ztypes_freebsd_386.go │ │ ├── ztypes_freebsd_amd64.go │ │ ├── ztypes_freebsd_arm.go │ │ ├── ztypes_linux_386.go │ │ ├── ztypes_linux_amd64.go │ │ ├── ztypes_linux_arm.go │ │ ├── ztypes_linux_arm64.go │ │ ├── ztypes_linux_mips.go │ │ ├── ztypes_linux_mips64.go │ │ ├── ztypes_linux_mips64le.go │ │ ├── ztypes_linux_mipsle.go │ │ ├── ztypes_linux_ppc64.go │ │ ├── ztypes_linux_ppc64le.go │ │ ├── ztypes_linux_s390x.go │ │ ├── ztypes_linux_sparc64.go │ │ ├── ztypes_netbsd_386.go │ │ ├── ztypes_netbsd_amd64.go │ │ ├── ztypes_netbsd_arm.go │ │ ├── ztypes_openbsd_386.go │ │ ├── ztypes_openbsd_amd64.go │ │ ├── ztypes_openbsd_arm.go │ │ └── ztypes_solaris_amd64.go │ │ └── windows │ │ ├── asm_windows_386.s │ │ ├── asm_windows_amd64.s │ │ ├── dll_windows.go │ │ ├── env_unset.go │ │ ├── env_windows.go │ │ ├── eventlog.go │ │ ├── exec_windows.go │ │ ├── memory_windows.go │ │ ├── mksyscall.go │ │ ├── race.go │ │ ├── race0.go │ │ ├── registry │ │ ├── export_test.go │ │ ├── key.go │ │ ├── mksyscall.go │ │ ├── registry_test.go │ │ ├── syscall.go │ │ ├── value.go │ │ └── zsyscall_windows.go │ │ ├── security_windows.go │ │ ├── service.go │ │ ├── str.go │ │ ├── svc │ │ ├── debug │ │ │ ├── log.go │ │ │ └── service.go │ │ ├── event.go │ │ ├── eventlog │ │ │ ├── install.go │ │ │ ├── log.go │ │ │ └── log_test.go │ │ ├── example │ │ │ ├── beep.go │ │ │ ├── install.go │ │ │ ├── main.go │ │ │ ├── manage.go │ │ │ └── service.go │ │ ├── go12.c │ │ ├── go12.go │ │ ├── go13.go │ │ ├── mgr │ │ │ ├── config.go │ │ │ ├── mgr.go │ │ │ ├── mgr_test.go │ │ │ └── service.go │ │ ├── security.go │ │ ├── service.go │ │ ├── svc_test.go │ │ ├── sys_386.s │ │ └── sys_amd64.s │ │ ├── syscall.go │ │ ├── syscall_test.go │ │ ├── syscall_windows.go │ │ ├── syscall_windows_test.go │ │ ├── types_windows.go │ │ ├── types_windows_386.go │ │ ├── types_windows_amd64.go │ │ └── zsyscall_windows.go └── gopkg.in │ ├── mgo.v2 │ ├── .travis.yml │ ├── LICENSE │ ├── Makefile │ ├── README.md │ ├── auth.go │ ├── auth_test.go │ ├── bson │ │ ├── LICENSE │ │ ├── bson.go │ │ ├── bson_test.go │ │ ├── decimal.go │ │ ├── decimal_test.go │ │ ├── decode.go │ │ ├── encode.go │ │ ├── json.go │ │ ├── json_test.go │ │ ├── specdata │ │ │ └── update.sh │ │ └── specdata_test.go │ ├── bulk.go │ ├── bulk_test.go │ ├── cluster.go │ ├── cluster_test.go │ ├── dbtest │ │ ├── dbserver.go │ │ ├── dbserver_test.go │ │ └── export_test.go │ ├── doc.go │ ├── export_test.go │ ├── gridfs.go │ ├── gridfs_test.go │ ├── harness │ │ ├── certs │ │ │ ├── client.crt │ │ │ ├── client.key │ │ │ ├── client.pem │ │ │ ├── client.req │ │ │ ├── server.crt │ │ │ ├── server.key │ │ │ └── server.pem │ │ ├── daemons │ │ │ ├── .env │ │ │ ├── cfg1 │ │ │ │ ├── db │ │ │ │ │ ├── .empty │ │ │ │ │ ├── journal │ │ │ │ │ │ └── tempLatencyTest │ │ │ │ │ └── mongod.lock │ │ │ │ ├── log │ │ │ │ │ └── run │ │ │ │ └── run │ │ │ ├── cfg2 │ │ │ │ ├── db │ │ │ │ │ └── .empty │ │ │ │ ├── log │ │ │ │ │ └── run │ │ │ │ └── run │ │ │ ├── cfg3 │ │ │ │ ├── db │ │ │ │ │ └── .empty │ │ │ │ ├── log │ │ │ │ │ └── run │ │ │ │ └── run │ │ │ ├── db1 │ │ │ │ ├── db │ │ │ │ │ └── .empty │ │ │ │ ├── log │ │ │ │ │ └── run │ │ │ │ └── run │ │ │ ├── db2 │ │ │ │ ├── db │ │ │ │ │ └── .empty │ │ │ │ ├── log │ │ │ │ │ └── run │ │ │ │ └── run │ │ │ ├── db3 │ │ │ │ ├── db │ │ │ │ │ └── .empty │ │ │ │ ├── log │ │ │ │ │ └── run │ │ │ │ └── run │ │ │ ├── rs1a │ │ │ │ ├── db │ │ │ │ │ └── .empty │ │ │ │ ├── log │ │ │ │ │ └── run │ │ │ │ └── run │ │ │ ├── rs1b │ │ │ │ ├── db │ │ │ │ │ └── .empty │ │ │ │ ├── log │ │ │ │ │ └── run │ │ │ │ └── run │ │ │ ├── rs1c │ │ │ │ ├── db │ │ │ │ │ └── .empty │ │ │ │ ├── log │ │ │ │ │ └── run │ │ │ │ └── run │ │ │ ├── rs2a │ │ │ │ ├── db │ │ │ │ │ └── .empty │ │ │ │ ├── log │ │ │ │ │ └── run │ │ │ │ └── run │ │ │ ├── rs2b │ │ │ │ ├── db │ │ │ │ │ └── .empty │ │ │ │ ├── log │ │ │ │ │ └── run │ │ │ │ └── run │ │ │ ├── rs2c │ │ │ │ ├── db │ │ │ │ │ └── .empty │ │ │ │ ├── log │ │ │ │ │ └── run │ │ │ │ └── run │ │ │ ├── rs3a │ │ │ │ ├── db │ │ │ │ │ └── .empty │ │ │ │ ├── log │ │ │ │ │ └── run │ │ │ │ └── run │ │ │ ├── rs3b │ │ │ │ ├── db │ │ │ │ │ └── .empty │ │ │ │ ├── log │ │ │ │ │ └── run │ │ │ │ └── run │ │ │ ├── rs3c │ │ │ │ ├── db │ │ │ │ │ └── .empty │ │ │ │ ├── log │ │ │ │ │ └── run │ │ │ │ └── run │ │ │ ├── rs4a │ │ │ │ ├── db │ │ │ │ │ └── .empty │ │ │ │ ├── log │ │ │ │ │ └── run │ │ │ │ └── run │ │ │ ├── s1 │ │ │ │ ├── log │ │ │ │ │ └── run │ │ │ │ └── run │ │ │ ├── s2 │ │ │ │ ├── log │ │ │ │ │ └── run │ │ │ │ └── run │ │ │ └── s3 │ │ │ │ ├── log │ │ │ │ └── run │ │ │ │ └── run │ │ ├── mongojs │ │ │ ├── dropall.js │ │ │ ├── init.js │ │ │ └── wait.js │ │ └── setup.sh │ ├── internal │ │ ├── json │ │ │ ├── LICENSE │ │ │ ├── bench_test.go │ │ │ ├── decode.go │ │ │ ├── decode_test.go │ │ │ ├── encode.go │ │ │ ├── encode_test.go │ │ │ ├── example_test.go │ │ │ ├── extension.go │ │ │ ├── extension_test.go │ │ │ ├── fold.go │ │ │ ├── fold_test.go │ │ │ ├── indent.go │ │ │ ├── number_test.go │ │ │ ├── scanner.go │ │ │ ├── scanner_test.go │ │ │ ├── stream.go │ │ │ ├── stream_test.go │ │ │ ├── tagkey_test.go │ │ │ ├── tags.go │ │ │ └── tags_test.go │ │ ├── sasl │ │ │ ├── sasl.c │ │ │ ├── sasl.go │ │ │ ├── sasl_windows.c │ │ │ ├── sasl_windows.go │ │ │ ├── sasl_windows.h │ │ │ ├── sspi_windows.c │ │ │ └── sspi_windows.h │ │ └── scram │ │ │ ├── scram.go │ │ │ └── scram_test.go │ ├── log.go │ ├── queue.go │ ├── queue_test.go │ ├── raceoff.go │ ├── raceon.go │ ├── saslimpl.go │ ├── saslstub.go │ ├── server.go │ ├── session.go │ ├── session_test.go │ ├── socket.go │ ├── stats.go │ ├── suite_test.go │ ├── syscall_test.go │ ├── syscall_windows_test.go │ └── txn │ │ ├── chaos.go │ │ ├── debug.go │ │ ├── dockey_test.go │ │ ├── flusher.go │ │ ├── output.txt │ │ ├── sim_test.go │ │ ├── tarjan.go │ │ ├── tarjan_test.go │ │ ├── txn.go │ │ └── txn_test.go │ └── urfave │ └── cli.v1 │ ├── .flake8 │ ├── .gitignore │ ├── .travis.yml │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── altsrc │ ├── altsrc.go │ ├── flag.go │ ├── flag_generated.go │ ├── flag_test.go │ ├── helpers_test.go │ ├── input_source_context.go │ ├── map_input_source.go │ ├── toml_command_test.go │ ├── toml_file_loader.go │ ├── yaml_command_test.go │ └── yaml_file_loader.go │ ├── app.go │ ├── app_test.go │ ├── appveyor.yml │ ├── autocomplete │ ├── bash_autocomplete │ └── zsh_autocomplete │ ├── category.go │ ├── cli.go │ ├── command.go │ ├── command_test.go │ ├── context.go │ ├── context_test.go │ ├── errors.go │ ├── errors_test.go │ ├── flag-types.json │ ├── flag.go │ ├── flag_generated.go │ ├── flag_test.go │ ├── funcs.go │ ├── generate-flag-types │ ├── help.go │ ├── help_test.go │ ├── helpers_test.go │ ├── helpers_unix_test.go │ ├── helpers_windows_test.go │ └── runtests └── web ├── controller.go ├── router.go ├── statistics-middleware.go ├── utils.go ├── web-server.go └── web_test.go /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Gopkg.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/Gopkg.lock -------------------------------------------------------------------------------- /Gopkg.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/Gopkg.toml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/README.md -------------------------------------------------------------------------------- /dao/dao-types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/dao/dao-types.go -------------------------------------------------------------------------------- /dao/task-dao-factory.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/dao/task-dao-factory.go -------------------------------------------------------------------------------- /dao/task-dao-mock.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/dao/task-dao-mock.go -------------------------------------------------------------------------------- /dao/task-dao-mock_internal_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/dao/task-dao-mock_internal_test.go -------------------------------------------------------------------------------- /dao/task-dao-mock_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/dao/task-dao-mock_test.go -------------------------------------------------------------------------------- /dao/task-dao-mongo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/dao/task-dao-mongo.go -------------------------------------------------------------------------------- /dao/task-dao-mongo_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/dao/task-dao-mongo_test.go -------------------------------------------------------------------------------- /dao/task-dao-postgres.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/dao/task-dao-postgres.go -------------------------------------------------------------------------------- /dao/task-dao-postgres_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/dao/task-dao-postgres_test.go -------------------------------------------------------------------------------- /dao/task-dao.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/dao/task-dao.go -------------------------------------------------------------------------------- /doc/img/concurrency.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/doc/img/concurrency.png -------------------------------------------------------------------------------- /doc/img/gopath_vendor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/doc/img/gopath_vendor.png -------------------------------------------------------------------------------- /doc/img/main_architecture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/doc/img/main_architecture.png -------------------------------------------------------------------------------- /doc/img/web_architecture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/doc/img/web_architecture.png -------------------------------------------------------------------------------- /docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/docker/Dockerfile -------------------------------------------------------------------------------- /docker/Dockerfile.multi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/docker/Dockerfile.multi -------------------------------------------------------------------------------- /docker/databases.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/docker/databases.yml -------------------------------------------------------------------------------- /docker/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/docker/docker-compose.yml -------------------------------------------------------------------------------- /docker/mongodb.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/docker/mongodb.yml -------------------------------------------------------------------------------- /docker/postgresql.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/docker/postgresql.yml -------------------------------------------------------------------------------- /etc/apiquery.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/etc/apiquery.sh -------------------------------------------------------------------------------- /etc/migrations/1_create_todos_table.down.sql: -------------------------------------------------------------------------------- 1 | DROP TABLE IF EXISTS todos; 2 | -------------------------------------------------------------------------------- /etc/migrations/1_create_todos_table.up.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/etc/migrations/1_create_todos_table.up.sql -------------------------------------------------------------------------------- /etc/todo_list_go.postman_collection.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/etc/todo_list_go.postman_collection.json -------------------------------------------------------------------------------- /etc/todohigh.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/etc/todohigh.json -------------------------------------------------------------------------------- /etc/todomedium.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/etc/todomedium.json -------------------------------------------------------------------------------- /model/task.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/model/task.go -------------------------------------------------------------------------------- /statistics/statistics.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/statistics/statistics.go -------------------------------------------------------------------------------- /statistics/statistics_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/statistics/statistics_test.go -------------------------------------------------------------------------------- /todolist.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/todolist.go -------------------------------------------------------------------------------- /utils/logger.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/utils/logger.go -------------------------------------------------------------------------------- /utils/timetrack.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/utils/timetrack.go -------------------------------------------------------------------------------- /vendor/github.com/gorilla/context/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/github.com/gorilla/context/.travis.yml -------------------------------------------------------------------------------- /vendor/github.com/gorilla/context/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/github.com/gorilla/context/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/gorilla/context/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/github.com/gorilla/context/README.md -------------------------------------------------------------------------------- /vendor/github.com/gorilla/context/context.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/github.com/gorilla/context/context.go -------------------------------------------------------------------------------- /vendor/github.com/gorilla/context/context_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/github.com/gorilla/context/context_test.go -------------------------------------------------------------------------------- /vendor/github.com/gorilla/context/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/github.com/gorilla/context/doc.go -------------------------------------------------------------------------------- /vendor/github.com/gorilla/mux/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/github.com/gorilla/mux/.travis.yml -------------------------------------------------------------------------------- /vendor/github.com/gorilla/mux/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/github.com/gorilla/mux/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/gorilla/mux/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/github.com/gorilla/mux/README.md -------------------------------------------------------------------------------- /vendor/github.com/gorilla/mux/bench_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/github.com/gorilla/mux/bench_test.go -------------------------------------------------------------------------------- /vendor/github.com/gorilla/mux/context_gorilla.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/github.com/gorilla/mux/context_gorilla.go -------------------------------------------------------------------------------- /vendor/github.com/gorilla/mux/context_gorilla_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/github.com/gorilla/mux/context_gorilla_test.go -------------------------------------------------------------------------------- /vendor/github.com/gorilla/mux/context_native.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/github.com/gorilla/mux/context_native.go -------------------------------------------------------------------------------- /vendor/github.com/gorilla/mux/context_native_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/github.com/gorilla/mux/context_native_test.go -------------------------------------------------------------------------------- /vendor/github.com/gorilla/mux/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/github.com/gorilla/mux/doc.go -------------------------------------------------------------------------------- /vendor/github.com/gorilla/mux/mux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/github.com/gorilla/mux/mux.go -------------------------------------------------------------------------------- /vendor/github.com/gorilla/mux/mux_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/github.com/gorilla/mux/mux_test.go -------------------------------------------------------------------------------- /vendor/github.com/gorilla/mux/old_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/github.com/gorilla/mux/old_test.go -------------------------------------------------------------------------------- /vendor/github.com/gorilla/mux/regexp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/github.com/gorilla/mux/regexp.go -------------------------------------------------------------------------------- /vendor/github.com/gorilla/mux/route.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/github.com/gorilla/mux/route.go -------------------------------------------------------------------------------- /vendor/github.com/lib/pq/.gitignore: -------------------------------------------------------------------------------- 1 | .db 2 | *.test 3 | *~ 4 | *.swp 5 | -------------------------------------------------------------------------------- /vendor/github.com/lib/pq/.travis.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/github.com/lib/pq/.travis.sh -------------------------------------------------------------------------------- /vendor/github.com/lib/pq/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/github.com/lib/pq/.travis.yml -------------------------------------------------------------------------------- /vendor/github.com/lib/pq/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/github.com/lib/pq/CONTRIBUTING.md -------------------------------------------------------------------------------- /vendor/github.com/lib/pq/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/github.com/lib/pq/LICENSE.md -------------------------------------------------------------------------------- /vendor/github.com/lib/pq/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/github.com/lib/pq/README.md -------------------------------------------------------------------------------- /vendor/github.com/lib/pq/array.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/github.com/lib/pq/array.go -------------------------------------------------------------------------------- /vendor/github.com/lib/pq/array_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/github.com/lib/pq/array_test.go -------------------------------------------------------------------------------- /vendor/github.com/lib/pq/bench_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/github.com/lib/pq/bench_test.go -------------------------------------------------------------------------------- /vendor/github.com/lib/pq/buf.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/github.com/lib/pq/buf.go -------------------------------------------------------------------------------- /vendor/github.com/lib/pq/certs/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/github.com/lib/pq/certs/README -------------------------------------------------------------------------------- /vendor/github.com/lib/pq/certs/bogus_root.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/github.com/lib/pq/certs/bogus_root.crt -------------------------------------------------------------------------------- /vendor/github.com/lib/pq/certs/postgresql.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/github.com/lib/pq/certs/postgresql.crt -------------------------------------------------------------------------------- /vendor/github.com/lib/pq/certs/postgresql.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/github.com/lib/pq/certs/postgresql.key -------------------------------------------------------------------------------- /vendor/github.com/lib/pq/certs/root.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/github.com/lib/pq/certs/root.crt -------------------------------------------------------------------------------- /vendor/github.com/lib/pq/certs/server.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/github.com/lib/pq/certs/server.crt -------------------------------------------------------------------------------- /vendor/github.com/lib/pq/certs/server.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/github.com/lib/pq/certs/server.key -------------------------------------------------------------------------------- /vendor/github.com/lib/pq/conn.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/github.com/lib/pq/conn.go -------------------------------------------------------------------------------- /vendor/github.com/lib/pq/conn_go18.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/github.com/lib/pq/conn_go18.go -------------------------------------------------------------------------------- /vendor/github.com/lib/pq/conn_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/github.com/lib/pq/conn_test.go -------------------------------------------------------------------------------- /vendor/github.com/lib/pq/copy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/github.com/lib/pq/copy.go -------------------------------------------------------------------------------- /vendor/github.com/lib/pq/copy_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/github.com/lib/pq/copy_test.go -------------------------------------------------------------------------------- /vendor/github.com/lib/pq/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/github.com/lib/pq/doc.go -------------------------------------------------------------------------------- /vendor/github.com/lib/pq/encode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/github.com/lib/pq/encode.go -------------------------------------------------------------------------------- /vendor/github.com/lib/pq/encode_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/github.com/lib/pq/encode_test.go -------------------------------------------------------------------------------- /vendor/github.com/lib/pq/error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/github.com/lib/pq/error.go -------------------------------------------------------------------------------- /vendor/github.com/lib/pq/example/listen/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/github.com/lib/pq/example/listen/doc.go -------------------------------------------------------------------------------- /vendor/github.com/lib/pq/go18_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/github.com/lib/pq/go18_test.go -------------------------------------------------------------------------------- /vendor/github.com/lib/pq/hstore/hstore.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/github.com/lib/pq/hstore/hstore.go -------------------------------------------------------------------------------- /vendor/github.com/lib/pq/hstore/hstore_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/github.com/lib/pq/hstore/hstore_test.go -------------------------------------------------------------------------------- /vendor/github.com/lib/pq/issues_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/github.com/lib/pq/issues_test.go -------------------------------------------------------------------------------- /vendor/github.com/lib/pq/notify.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/github.com/lib/pq/notify.go -------------------------------------------------------------------------------- /vendor/github.com/lib/pq/notify_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/github.com/lib/pq/notify_test.go -------------------------------------------------------------------------------- /vendor/github.com/lib/pq/oid/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/github.com/lib/pq/oid/doc.go -------------------------------------------------------------------------------- /vendor/github.com/lib/pq/oid/gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/github.com/lib/pq/oid/gen.go -------------------------------------------------------------------------------- /vendor/github.com/lib/pq/oid/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/github.com/lib/pq/oid/types.go -------------------------------------------------------------------------------- /vendor/github.com/lib/pq/rows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/github.com/lib/pq/rows.go -------------------------------------------------------------------------------- /vendor/github.com/lib/pq/rows_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/github.com/lib/pq/rows_test.go -------------------------------------------------------------------------------- /vendor/github.com/lib/pq/ssl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/github.com/lib/pq/ssl.go -------------------------------------------------------------------------------- /vendor/github.com/lib/pq/ssl_go1.7.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/github.com/lib/pq/ssl_go1.7.go -------------------------------------------------------------------------------- /vendor/github.com/lib/pq/ssl_permissions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/github.com/lib/pq/ssl_permissions.go -------------------------------------------------------------------------------- /vendor/github.com/lib/pq/ssl_renegotiation.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/github.com/lib/pq/ssl_renegotiation.go -------------------------------------------------------------------------------- /vendor/github.com/lib/pq/ssl_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/github.com/lib/pq/ssl_test.go -------------------------------------------------------------------------------- /vendor/github.com/lib/pq/ssl_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/github.com/lib/pq/ssl_windows.go -------------------------------------------------------------------------------- /vendor/github.com/lib/pq/url.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/github.com/lib/pq/url.go -------------------------------------------------------------------------------- /vendor/github.com/lib/pq/url_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/github.com/lib/pq/url_test.go -------------------------------------------------------------------------------- /vendor/github.com/lib/pq/user_posix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/github.com/lib/pq/user_posix.go -------------------------------------------------------------------------------- /vendor/github.com/lib/pq/user_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/github.com/lib/pq/user_windows.go -------------------------------------------------------------------------------- /vendor/github.com/lib/pq/uuid.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/github.com/lib/pq/uuid.go -------------------------------------------------------------------------------- /vendor/github.com/lib/pq/uuid_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/github.com/lib/pq/uuid_test.go -------------------------------------------------------------------------------- /vendor/github.com/mattes/migrate/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/github.com/mattes/migrate/.gitignore -------------------------------------------------------------------------------- /vendor/github.com/mattes/migrate/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/github.com/mattes/migrate/.travis.yml -------------------------------------------------------------------------------- /vendor/github.com/mattes/migrate/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/github.com/mattes/migrate/CONTRIBUTING.md -------------------------------------------------------------------------------- /vendor/github.com/mattes/migrate/FAQ.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/github.com/mattes/migrate/FAQ.md -------------------------------------------------------------------------------- /vendor/github.com/mattes/migrate/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/github.com/mattes/migrate/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/mattes/migrate/MIGRATIONS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/github.com/mattes/migrate/MIGRATIONS.md -------------------------------------------------------------------------------- /vendor/github.com/mattes/migrate/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/github.com/mattes/migrate/Makefile -------------------------------------------------------------------------------- /vendor/github.com/mattes/migrate/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/github.com/mattes/migrate/README.md -------------------------------------------------------------------------------- /vendor/github.com/mattes/migrate/cli/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/github.com/mattes/migrate/cli/README.md -------------------------------------------------------------------------------- /vendor/github.com/mattes/migrate/cli/build_aws-s3.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/github.com/mattes/migrate/cli/build_aws-s3.go -------------------------------------------------------------------------------- /vendor/github.com/mattes/migrate/cli/build_github.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/github.com/mattes/migrate/cli/build_github.go -------------------------------------------------------------------------------- /vendor/github.com/mattes/migrate/cli/build_mysql.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/github.com/mattes/migrate/cli/build_mysql.go -------------------------------------------------------------------------------- /vendor/github.com/mattes/migrate/cli/build_ql.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/github.com/mattes/migrate/cli/build_ql.go -------------------------------------------------------------------------------- /vendor/github.com/mattes/migrate/cli/commands.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/github.com/mattes/migrate/cli/commands.go -------------------------------------------------------------------------------- /vendor/github.com/mattes/migrate/cli/log.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/github.com/mattes/migrate/cli/log.go -------------------------------------------------------------------------------- /vendor/github.com/mattes/migrate/cli/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/github.com/mattes/migrate/cli/main.go -------------------------------------------------------------------------------- /vendor/github.com/mattes/migrate/cli/version.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/github.com/mattes/migrate/cli/version.go -------------------------------------------------------------------------------- /vendor/github.com/mattes/migrate/database/cassandra/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/mattes/migrate/database/crate/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/mattes/migrate/database/driver.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/github.com/mattes/migrate/database/driver.go -------------------------------------------------------------------------------- /vendor/github.com/mattes/migrate/database/error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/github.com/mattes/migrate/database/error.go -------------------------------------------------------------------------------- /vendor/github.com/mattes/migrate/database/mongodb/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/mattes/migrate/database/neo4j/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/mattes/migrate/database/postgres/examples/migrations/1085649617_create_users_table.down.sql: -------------------------------------------------------------------------------- 1 | DROP TABLE IF EXISTS users; 2 | -------------------------------------------------------------------------------- /vendor/github.com/mattes/migrate/database/postgres/examples/migrations/1185749658_add_city_to_users.down.sql: -------------------------------------------------------------------------------- 1 | ALTER TABLE users DROP COLUMN IF EXISTS city; 2 | -------------------------------------------------------------------------------- /vendor/github.com/mattes/migrate/database/postgres/examples/migrations/1385949617_create_books_table.down.sql: -------------------------------------------------------------------------------- 1 | DROP TABLE IF EXISTS books; 2 | -------------------------------------------------------------------------------- /vendor/github.com/mattes/migrate/database/postgres/examples/migrations/1485949617_create_movies_table.down.sql: -------------------------------------------------------------------------------- 1 | DROP TABLE IF EXISTS movies; 2 | -------------------------------------------------------------------------------- /vendor/github.com/mattes/migrate/database/ql/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/mattes/migrate/database/ql/migration/33_create_table.down.sql: -------------------------------------------------------------------------------- 1 | DROP TABLE IF EXISTS pets; -------------------------------------------------------------------------------- /vendor/github.com/mattes/migrate/database/ql/migration/33_create_table.up.sql: -------------------------------------------------------------------------------- 1 | CREATE TABLE pets ( 2 | name string 3 | ); -------------------------------------------------------------------------------- /vendor/github.com/mattes/migrate/database/ql/migration/44_alter_table.down.sql: -------------------------------------------------------------------------------- 1 | DROP TABLE IF EXISTS pets; -------------------------------------------------------------------------------- /vendor/github.com/mattes/migrate/database/ql/migration/44_alter_table.up.sql: -------------------------------------------------------------------------------- 1 | ALTER TABLE pets ADD predator bool;; -------------------------------------------------------------------------------- /vendor/github.com/mattes/migrate/database/ql/ql.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/github.com/mattes/migrate/database/ql/ql.go -------------------------------------------------------------------------------- /vendor/github.com/mattes/migrate/database/shell/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/mattes/migrate/database/sqlite/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/mattes/migrate/database/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/github.com/mattes/migrate/database/util.go -------------------------------------------------------------------------------- /vendor/github.com/mattes/migrate/log.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/github.com/mattes/migrate/log.go -------------------------------------------------------------------------------- /vendor/github.com/mattes/migrate/migrate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/github.com/mattes/migrate/migrate.go -------------------------------------------------------------------------------- /vendor/github.com/mattes/migrate/migrate_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/github.com/mattes/migrate/migrate_test.go -------------------------------------------------------------------------------- /vendor/github.com/mattes/migrate/migration.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/github.com/mattes/migrate/migration.go -------------------------------------------------------------------------------- /vendor/github.com/mattes/migrate/migration_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/github.com/mattes/migrate/migration_test.go -------------------------------------------------------------------------------- /vendor/github.com/mattes/migrate/source/aws-s3/README.md: -------------------------------------------------------------------------------- 1 | # aws-s3 2 | 3 | `s3:///` 4 | -------------------------------------------------------------------------------- /vendor/github.com/mattes/migrate/source/aws-s3/s3.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/github.com/mattes/migrate/source/aws-s3/s3.go -------------------------------------------------------------------------------- /vendor/github.com/mattes/migrate/source/driver.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/github.com/mattes/migrate/source/driver.go -------------------------------------------------------------------------------- /vendor/github.com/mattes/migrate/source/file/file.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/github.com/mattes/migrate/source/file/file.go -------------------------------------------------------------------------------- /vendor/github.com/mattes/migrate/source/github/.gitignore: -------------------------------------------------------------------------------- 1 | .github_test_secrets 2 | -------------------------------------------------------------------------------- /vendor/github.com/mattes/migrate/source/github/examples/migrations/1085649617_create_users_table.down.sql: -------------------------------------------------------------------------------- 1 | DROP TABLE IF EXISTS users; 2 | -------------------------------------------------------------------------------- /vendor/github.com/mattes/migrate/source/github/examples/migrations/1185749658_add_city_to_users.down.sql: -------------------------------------------------------------------------------- 1 | ALTER TABLE users DROP COLUMN IF EXISTS city; 2 | -------------------------------------------------------------------------------- /vendor/github.com/mattes/migrate/source/github/examples/migrations/1285849751_add_index_on_user_emails.down.sql: -------------------------------------------------------------------------------- 1 | DROP INDEX IF EXISTS users_email_index; 2 | -------------------------------------------------------------------------------- /vendor/github.com/mattes/migrate/source/github/examples/migrations/1385949617_create_books_table.down.sql: -------------------------------------------------------------------------------- 1 | DROP TABLE IF EXISTS books; 2 | -------------------------------------------------------------------------------- /vendor/github.com/mattes/migrate/source/github/examples/migrations/1485949617_create_movies_table.down.sql: -------------------------------------------------------------------------------- 1 | DROP TABLE IF EXISTS movies; 2 | -------------------------------------------------------------------------------- /vendor/github.com/mattes/migrate/source/google-cloud-storage/README.md: -------------------------------------------------------------------------------- 1 | # google-cloud-storage 2 | 3 | `gcs:///` 4 | -------------------------------------------------------------------------------- /vendor/github.com/mattes/migrate/source/migration.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/github.com/mattes/migrate/source/migration.go -------------------------------------------------------------------------------- /vendor/github.com/mattes/migrate/source/parse.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/github.com/mattes/migrate/source/parse.go -------------------------------------------------------------------------------- /vendor/github.com/mattes/migrate/source/parse_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/github.com/mattes/migrate/source/parse_test.go -------------------------------------------------------------------------------- /vendor/github.com/mattes/migrate/source/stub/stub.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/github.com/mattes/migrate/source/stub/stub.go -------------------------------------------------------------------------------- /vendor/github.com/mattes/migrate/testing/docker.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/github.com/mattes/migrate/testing/docker.go -------------------------------------------------------------------------------- /vendor/github.com/mattes/migrate/testing/testing.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/github.com/mattes/migrate/testing/testing.go -------------------------------------------------------------------------------- /vendor/github.com/mattes/migrate/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/github.com/mattes/migrate/util.go -------------------------------------------------------------------------------- /vendor/github.com/mattes/migrate/util_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/github.com/mattes/migrate/util_test.go -------------------------------------------------------------------------------- /vendor/github.com/meatballhat/negroni-logrus/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/github.com/meatballhat/negroni-logrus/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/rs/cors/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/github.com/rs/cors/.travis.yml -------------------------------------------------------------------------------- /vendor/github.com/rs/cors/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/github.com/rs/cors/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/rs/cors/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/github.com/rs/cors/README.md -------------------------------------------------------------------------------- /vendor/github.com/rs/cors/bench_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/github.com/rs/cors/bench_test.go -------------------------------------------------------------------------------- /vendor/github.com/rs/cors/cors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/github.com/rs/cors/cors.go -------------------------------------------------------------------------------- /vendor/github.com/rs/cors/cors_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/github.com/rs/cors/cors_test.go -------------------------------------------------------------------------------- /vendor/github.com/rs/cors/examples/alice/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/github.com/rs/cors/examples/alice/server.go -------------------------------------------------------------------------------- /vendor/github.com/rs/cors/examples/default/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/github.com/rs/cors/examples/default/server.go -------------------------------------------------------------------------------- /vendor/github.com/rs/cors/examples/goji/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/github.com/rs/cors/examples/goji/server.go -------------------------------------------------------------------------------- /vendor/github.com/rs/cors/examples/gorilla/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/github.com/rs/cors/examples/gorilla/server.go -------------------------------------------------------------------------------- /vendor/github.com/rs/cors/examples/martini/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/github.com/rs/cors/examples/martini/server.go -------------------------------------------------------------------------------- /vendor/github.com/rs/cors/examples/negroni/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/github.com/rs/cors/examples/negroni/server.go -------------------------------------------------------------------------------- /vendor/github.com/rs/cors/examples/nethttp/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/github.com/rs/cors/examples/nethttp/server.go -------------------------------------------------------------------------------- /vendor/github.com/rs/cors/examples/openbar/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/github.com/rs/cors/examples/openbar/server.go -------------------------------------------------------------------------------- /vendor/github.com/rs/cors/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/github.com/rs/cors/utils.go -------------------------------------------------------------------------------- /vendor/github.com/rs/cors/utils_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/github.com/rs/cors/utils_test.go -------------------------------------------------------------------------------- /vendor/github.com/satori/go.uuid/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/github.com/satori/go.uuid/.travis.yml -------------------------------------------------------------------------------- /vendor/github.com/satori/go.uuid/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/github.com/satori/go.uuid/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/satori/go.uuid/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/github.com/satori/go.uuid/README.md -------------------------------------------------------------------------------- /vendor/github.com/satori/go.uuid/benchmarks_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/github.com/satori/go.uuid/benchmarks_test.go -------------------------------------------------------------------------------- /vendor/github.com/satori/go.uuid/uuid.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/github.com/satori/go.uuid/uuid.go -------------------------------------------------------------------------------- /vendor/github.com/satori/go.uuid/uuid_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/github.com/satori/go.uuid/uuid_test.go -------------------------------------------------------------------------------- /vendor/github.com/sirupsen/logrus/.gitignore: -------------------------------------------------------------------------------- 1 | logrus 2 | -------------------------------------------------------------------------------- /vendor/github.com/sirupsen/logrus/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/github.com/sirupsen/logrus/.travis.yml -------------------------------------------------------------------------------- /vendor/github.com/sirupsen/logrus/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/github.com/sirupsen/logrus/CHANGELOG.md -------------------------------------------------------------------------------- /vendor/github.com/sirupsen/logrus/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/github.com/sirupsen/logrus/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/sirupsen/logrus/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/github.com/sirupsen/logrus/README.md -------------------------------------------------------------------------------- /vendor/github.com/sirupsen/logrus/alt_exit.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/github.com/sirupsen/logrus/alt_exit.go -------------------------------------------------------------------------------- /vendor/github.com/sirupsen/logrus/alt_exit_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/github.com/sirupsen/logrus/alt_exit_test.go -------------------------------------------------------------------------------- /vendor/github.com/sirupsen/logrus/appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/github.com/sirupsen/logrus/appveyor.yml -------------------------------------------------------------------------------- /vendor/github.com/sirupsen/logrus/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/github.com/sirupsen/logrus/doc.go -------------------------------------------------------------------------------- /vendor/github.com/sirupsen/logrus/entry.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/github.com/sirupsen/logrus/entry.go -------------------------------------------------------------------------------- /vendor/github.com/sirupsen/logrus/entry_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/github.com/sirupsen/logrus/entry_test.go -------------------------------------------------------------------------------- /vendor/github.com/sirupsen/logrus/exported.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/github.com/sirupsen/logrus/exported.go -------------------------------------------------------------------------------- /vendor/github.com/sirupsen/logrus/formatter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/github.com/sirupsen/logrus/formatter.go -------------------------------------------------------------------------------- /vendor/github.com/sirupsen/logrus/hook_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/github.com/sirupsen/logrus/hook_test.go -------------------------------------------------------------------------------- /vendor/github.com/sirupsen/logrus/hooks.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/github.com/sirupsen/logrus/hooks.go -------------------------------------------------------------------------------- /vendor/github.com/sirupsen/logrus/hooks/test/test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/github.com/sirupsen/logrus/hooks/test/test.go -------------------------------------------------------------------------------- /vendor/github.com/sirupsen/logrus/json_formatter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/github.com/sirupsen/logrus/json_formatter.go -------------------------------------------------------------------------------- /vendor/github.com/sirupsen/logrus/logger.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/github.com/sirupsen/logrus/logger.go -------------------------------------------------------------------------------- /vendor/github.com/sirupsen/logrus/logrus.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/github.com/sirupsen/logrus/logrus.go -------------------------------------------------------------------------------- /vendor/github.com/sirupsen/logrus/logrus_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/github.com/sirupsen/logrus/logrus_test.go -------------------------------------------------------------------------------- /vendor/github.com/sirupsen/logrus/terminal_bsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/github.com/sirupsen/logrus/terminal_bsd.go -------------------------------------------------------------------------------- /vendor/github.com/sirupsen/logrus/terminal_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/github.com/sirupsen/logrus/terminal_linux.go -------------------------------------------------------------------------------- /vendor/github.com/sirupsen/logrus/text_formatter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/github.com/sirupsen/logrus/text_formatter.go -------------------------------------------------------------------------------- /vendor/github.com/sirupsen/logrus/writer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/github.com/sirupsen/logrus/writer.go -------------------------------------------------------------------------------- /vendor/github.com/urfave/negroni/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/github.com/urfave/negroni/CHANGELOG.md -------------------------------------------------------------------------------- /vendor/github.com/urfave/negroni/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/github.com/urfave/negroni/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/urfave/negroni/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/github.com/urfave/negroni/README.md -------------------------------------------------------------------------------- /vendor/github.com/urfave/negroni/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/github.com/urfave/negroni/doc.go -------------------------------------------------------------------------------- /vendor/github.com/urfave/negroni/logger.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/github.com/urfave/negroni/logger.go -------------------------------------------------------------------------------- /vendor/github.com/urfave/negroni/logger_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/github.com/urfave/negroni/logger_test.go -------------------------------------------------------------------------------- /vendor/github.com/urfave/negroni/negroni.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/github.com/urfave/negroni/negroni.go -------------------------------------------------------------------------------- /vendor/github.com/urfave/negroni/negroni_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/github.com/urfave/negroni/negroni_test.go -------------------------------------------------------------------------------- /vendor/github.com/urfave/negroni/recovery.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/github.com/urfave/negroni/recovery.go -------------------------------------------------------------------------------- /vendor/github.com/urfave/negroni/recovery_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/github.com/urfave/negroni/recovery_test.go -------------------------------------------------------------------------------- /vendor/github.com/urfave/negroni/response_writer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/github.com/urfave/negroni/response_writer.go -------------------------------------------------------------------------------- /vendor/github.com/urfave/negroni/static.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/github.com/urfave/negroni/static.go -------------------------------------------------------------------------------- /vendor/github.com/urfave/negroni/static_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/github.com/urfave/negroni/static_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/crypto/.gitattributes -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/crypto/.gitignore -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/crypto/AUTHORS -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/crypto/CONTRIBUTING.md -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/crypto/CONTRIBUTORS -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/crypto/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/crypto/PATENTS -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/crypto/README.md -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/acme/acme.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/crypto/acme/acme.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/acme/acme_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/crypto/acme/acme_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/acme/autocert/autocert.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/crypto/acme/autocert/autocert.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/acme/autocert/cache.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/crypto/acme/autocert/cache.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/acme/autocert/listener.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/crypto/acme/autocert/listener.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/acme/autocert/renewal.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/crypto/acme/autocert/renewal.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/acme/jws.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/crypto/acme/jws.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/acme/jws_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/crypto/acme/jws_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/acme/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/crypto/acme/types.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/acme/types_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/crypto/acme/types_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/bcrypt/base64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/crypto/bcrypt/base64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/bcrypt/bcrypt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/crypto/bcrypt/bcrypt.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/bcrypt/bcrypt_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/crypto/bcrypt/bcrypt_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/blake2b/blake2b.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/crypto/blake2b/blake2b.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/blake2b/blake2b_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/crypto/blake2b/blake2b_amd64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/blake2b/blake2b_amd64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/crypto/blake2b/blake2b_amd64.s -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/blake2b/blake2b_generic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/crypto/blake2b/blake2b_generic.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/blake2b/blake2b_ref.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/crypto/blake2b/blake2b_ref.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/blake2b/blake2b_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/crypto/blake2b/blake2b_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/blake2b/blake2x.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/crypto/blake2b/blake2x.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/blake2b/register.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/crypto/blake2b/register.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/blake2s/blake2s.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/crypto/blake2s/blake2s.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/blake2s/blake2s_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/crypto/blake2s/blake2s_386.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/blake2s/blake2s_386.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/crypto/blake2s/blake2s_386.s -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/blake2s/blake2s_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/crypto/blake2s/blake2s_amd64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/blake2s/blake2s_amd64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/crypto/blake2s/blake2s_amd64.s -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/blake2s/blake2s_generic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/crypto/blake2s/blake2s_generic.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/blake2s/blake2s_ref.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/crypto/blake2s/blake2s_ref.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/blake2s/blake2s_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/crypto/blake2s/blake2s_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/blake2s/blake2x.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/crypto/blake2s/blake2x.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/blake2s/register.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/crypto/blake2s/register.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/blowfish/block.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/crypto/blowfish/block.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/blowfish/blowfish_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/crypto/blowfish/blowfish_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/blowfish/cipher.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/crypto/blowfish/cipher.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/blowfish/const.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/crypto/blowfish/const.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/bn256/bn256.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/crypto/bn256/bn256.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/bn256/bn256_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/crypto/bn256/bn256_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/bn256/constants.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/crypto/bn256/constants.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/bn256/curve.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/crypto/bn256/curve.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/bn256/example_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/crypto/bn256/example_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/bn256/gfp12.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/crypto/bn256/gfp12.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/bn256/gfp2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/crypto/bn256/gfp2.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/bn256/gfp6.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/crypto/bn256/gfp6.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/bn256/optate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/crypto/bn256/optate.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/bn256/twist.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/crypto/bn256/twist.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/cast5/cast5.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/crypto/cast5/cast5.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/cast5/cast5_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/crypto/cast5/cast5_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/codereview.cfg: -------------------------------------------------------------------------------- 1 | issuerepo: golang/go 2 | -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/cryptobyte/asn1.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/crypto/cryptobyte/asn1.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/cryptobyte/asn1/asn1.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/crypto/cryptobyte/asn1/asn1.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/cryptobyte/asn1_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/crypto/cryptobyte/asn1_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/cryptobyte/builder.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/crypto/cryptobyte/builder.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/cryptobyte/example_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/crypto/cryptobyte/example_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/cryptobyte/string.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/crypto/cryptobyte/string.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/curve25519/const_amd64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/crypto/curve25519/const_amd64.h -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/curve25519/const_amd64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/crypto/curve25519/const_amd64.s -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/curve25519/cswap_amd64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/crypto/curve25519/cswap_amd64.s -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/curve25519/curve25519.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/crypto/curve25519/curve25519.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/curve25519/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/crypto/curve25519/doc.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/curve25519/freeze_amd64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/crypto/curve25519/freeze_amd64.s -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/curve25519/mul_amd64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/crypto/curve25519/mul_amd64.s -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/curve25519/square_amd64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/crypto/curve25519/square_amd64.s -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ed25519/ed25519.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/crypto/ed25519/ed25519.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ed25519/ed25519_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/crypto/ed25519/ed25519_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/hkdf/example_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/crypto/hkdf/example_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/hkdf/hkdf.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/crypto/hkdf/hkdf.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/hkdf/hkdf_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/crypto/hkdf/hkdf_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/md4/example_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/crypto/md4/example_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/md4/md4.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/crypto/md4/md4.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/md4/md4_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/crypto/md4/md4_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/md4/md4block.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/crypto/md4/md4block.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/nacl/auth/auth.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/crypto/nacl/auth/auth.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/nacl/auth/auth_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/crypto/nacl/auth/auth_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/nacl/auth/example_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/crypto/nacl/auth/example_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/nacl/box/box.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/crypto/nacl/box/box.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/nacl/box/box_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/crypto/nacl/box/box_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/nacl/box/example_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/crypto/nacl/box/example_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ocsp/ocsp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/crypto/ocsp/ocsp.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ocsp/ocsp_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/crypto/ocsp/ocsp_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/openpgp/armor/armor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/crypto/openpgp/armor/armor.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/openpgp/armor/encode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/crypto/openpgp/armor/encode.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/openpgp/canonical_text.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/crypto/openpgp/canonical_text.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/openpgp/elgamal/elgamal.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/crypto/openpgp/elgamal/elgamal.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/openpgp/errors/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/crypto/openpgp/errors/errors.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/openpgp/keys.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/crypto/openpgp/keys.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/openpgp/keys_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/crypto/openpgp/keys_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/openpgp/packet/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/crypto/openpgp/packet/config.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/openpgp/packet/literal.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/crypto/openpgp/packet/literal.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/openpgp/packet/ocfb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/crypto/openpgp/packet/ocfb.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/openpgp/packet/opaque.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/crypto/openpgp/packet/opaque.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/openpgp/packet/packet.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/crypto/openpgp/packet/packet.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/openpgp/packet/reader.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/crypto/openpgp/packet/reader.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/openpgp/packet/userid.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/crypto/openpgp/packet/userid.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/openpgp/read.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/crypto/openpgp/read.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/openpgp/read_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/crypto/openpgp/read_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/openpgp/s2k/s2k.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/crypto/openpgp/s2k/s2k.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/openpgp/s2k/s2k_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/crypto/openpgp/s2k/s2k_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/openpgp/write.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/crypto/openpgp/write.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/openpgp/write_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/crypto/openpgp/write_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/otr/libotr_test_helper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/crypto/otr/libotr_test_helper.c -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/otr/otr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/crypto/otr/otr.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/otr/otr_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/crypto/otr/otr_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/otr/smp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/crypto/otr/smp.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/pbkdf2/pbkdf2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/crypto/pbkdf2/pbkdf2.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/pbkdf2/pbkdf2_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/crypto/pbkdf2/pbkdf2_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/pkcs12/bmp-string.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/crypto/pkcs12/bmp-string.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/pkcs12/bmp-string_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/crypto/pkcs12/bmp-string_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/pkcs12/crypto.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/crypto/pkcs12/crypto.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/pkcs12/crypto_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/crypto/pkcs12/crypto_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/pkcs12/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/crypto/pkcs12/errors.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/pkcs12/internal/rc2/rc2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/crypto/pkcs12/internal/rc2/rc2.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/pkcs12/mac.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/crypto/pkcs12/mac.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/pkcs12/mac_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/crypto/pkcs12/mac_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/pkcs12/pbkdf.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/crypto/pkcs12/pbkdf.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/pkcs12/pbkdf_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/crypto/pkcs12/pbkdf_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/pkcs12/pkcs12.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/crypto/pkcs12/pkcs12.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/pkcs12/pkcs12_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/crypto/pkcs12/pkcs12_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/pkcs12/safebags.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/crypto/pkcs12/safebags.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/poly1305/poly1305.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/crypto/poly1305/poly1305.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/poly1305/poly1305_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/crypto/poly1305/poly1305_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/poly1305/sum_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/crypto/poly1305/sum_amd64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/poly1305/sum_amd64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/crypto/poly1305/sum_amd64.s -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/poly1305/sum_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/crypto/poly1305/sum_arm.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/poly1305/sum_arm.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/crypto/poly1305/sum_arm.s -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/poly1305/sum_ref.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/crypto/poly1305/sum_ref.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ripemd160/ripemd160.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/crypto/ripemd160/ripemd160.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/salsa20/salsa/hsalsa20.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/crypto/salsa20/salsa/hsalsa20.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/salsa20/salsa/salsa208.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/crypto/salsa20/salsa/salsa208.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/salsa20/salsa20.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/crypto/salsa20/salsa20.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/salsa20/salsa20_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/crypto/salsa20/salsa20_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/scrypt/example_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/crypto/scrypt/example_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/scrypt/scrypt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/crypto/scrypt/scrypt.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/scrypt/scrypt_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/crypto/scrypt/scrypt_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/sha3/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/crypto/sha3/doc.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/sha3/hashes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/crypto/sha3/hashes.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/sha3/keccakf.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/crypto/sha3/keccakf.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/sha3/keccakf_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/crypto/sha3/keccakf_amd64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/sha3/keccakf_amd64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/crypto/sha3/keccakf_amd64.s -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/sha3/register.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/crypto/sha3/register.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/sha3/sha3.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/crypto/sha3/sha3.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/sha3/sha3_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/crypto/sha3/sha3_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/sha3/shake.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/crypto/sha3/shake.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/sha3/xor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/crypto/sha3/xor.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/sha3/xor_generic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/crypto/sha3/xor_generic.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/sha3/xor_unaligned.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/crypto/sha3/xor_unaligned.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/agent/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/crypto/ssh/agent/client.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/agent/client_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/crypto/ssh/agent/client_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/agent/example_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/crypto/ssh/agent/example_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/agent/forward.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/crypto/ssh/agent/forward.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/agent/keyring.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/crypto/ssh/agent/keyring.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/agent/keyring_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/crypto/ssh/agent/keyring_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/agent/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/crypto/ssh/agent/server.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/agent/server_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/crypto/ssh/agent/server_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/agent/testdata_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/crypto/ssh/agent/testdata_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/benchmark_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/crypto/ssh/benchmark_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/buffer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/crypto/ssh/buffer.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/buffer_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/crypto/ssh/buffer_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/certs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/crypto/ssh/certs.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/certs_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/crypto/ssh/certs_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/channel.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/crypto/ssh/channel.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/cipher.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/crypto/ssh/cipher.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/cipher_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/crypto/ssh/cipher_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/crypto/ssh/client.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/client_auth.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/crypto/ssh/client_auth.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/client_auth_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/crypto/ssh/client_auth_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/client_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/crypto/ssh/client_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/common.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/crypto/ssh/common.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/connection.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/crypto/ssh/connection.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/crypto/ssh/doc.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/example_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/crypto/ssh/example_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/handshake.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/crypto/ssh/handshake.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/handshake_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/crypto/ssh/handshake_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/kex.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/crypto/ssh/kex.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/kex_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/crypto/ssh/kex_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/keys.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/crypto/ssh/keys.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/keys_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/crypto/ssh/keys_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/mac.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/crypto/ssh/mac.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/mempipe_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/crypto/ssh/mempipe_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/messages.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/crypto/ssh/messages.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/messages_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/crypto/ssh/messages_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/mux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/crypto/ssh/mux.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/mux_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/crypto/ssh/mux_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/crypto/ssh/server.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/session.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/crypto/ssh/session.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/session_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/crypto/ssh/session_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/streamlocal.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/crypto/ssh/streamlocal.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/tcpip.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/crypto/ssh/tcpip.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/tcpip_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/crypto/ssh/tcpip_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/terminal/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/crypto/ssh/terminal/util.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/test/cert_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/crypto/ssh/test/cert_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/test/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/crypto/ssh/test/doc.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/testdata/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/crypto/ssh/testdata/doc.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/testdata/keys.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/crypto/ssh/testdata/keys.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/testdata_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/crypto/ssh/testdata_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/transport.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/crypto/ssh/transport.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/transport_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/crypto/ssh/transport_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/tea/cipher.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/crypto/tea/cipher.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/tea/tea_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/crypto/tea/tea_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/twofish/twofish.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/crypto/twofish/twofish.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/twofish/twofish_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/crypto/twofish/twofish_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/xtea/block.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/crypto/xtea/block.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/xtea/cipher.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/crypto/xtea/cipher.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/xtea/xtea_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/crypto/xtea/xtea_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/xts/xts.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/crypto/xts/xts.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/xts/xts_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/crypto/xts/xts_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/sys/.gitattributes -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/sys/.gitignore -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/sys/AUTHORS -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/sys/CONTRIBUTING.md -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/sys/CONTRIBUTORS -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/sys/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/sys/PATENTS -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/sys/README.md -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/codereview.cfg: -------------------------------------------------------------------------------- 1 | issuerepo: golang/go 2 | -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/plan9/asm.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/sys/plan9/asm.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/plan9/asm_plan9_386.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/sys/plan9/asm_plan9_386.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/plan9/asm_plan9_amd64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/sys/plan9/asm_plan9_amd64.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/plan9/const_plan9.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/sys/plan9/const_plan9.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/plan9/dir_plan9.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/sys/plan9/dir_plan9.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/plan9/env_plan9.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/sys/plan9/env_plan9.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/plan9/env_unset.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/sys/plan9/env_unset.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/plan9/errors_plan9.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/sys/plan9/errors_plan9.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/plan9/mkall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/sys/plan9/mkall.sh -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/plan9/mkerrors.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/sys/plan9/mkerrors.sh -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/plan9/mksyscall.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/sys/plan9/mksyscall.pl -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/plan9/mksysnum_plan9.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/sys/plan9/mksysnum_plan9.sh -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/plan9/pwd_go15_plan9.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/sys/plan9/pwd_go15_plan9.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/plan9/pwd_plan9.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/sys/plan9/pwd_plan9.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/plan9/race.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/sys/plan9/race.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/plan9/race0.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/sys/plan9/race0.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/plan9/str.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/sys/plan9/str.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/plan9/syscall.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/sys/plan9/syscall.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/plan9/syscall_plan9.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/sys/plan9/syscall_plan9.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/plan9/syscall_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/sys/plan9/syscall_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/plan9/zsysnum_plan9.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/sys/plan9/zsysnum_plan9.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/.gitignore: -------------------------------------------------------------------------------- 1 | _obj/ 2 | -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/sys/unix/README.md -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/asm_darwin_386.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/sys/unix/asm_darwin_386.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/asm_darwin_amd64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/sys/unix/asm_darwin_amd64.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/asm_darwin_arm.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/sys/unix/asm_darwin_arm.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/asm_darwin_arm64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/sys/unix/asm_darwin_arm64.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/asm_dragonfly_amd64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/sys/unix/asm_dragonfly_amd64.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/asm_freebsd_386.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/sys/unix/asm_freebsd_386.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/asm_freebsd_amd64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/sys/unix/asm_freebsd_amd64.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/asm_freebsd_arm.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/sys/unix/asm_freebsd_arm.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/asm_linux_386.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/sys/unix/asm_linux_386.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/asm_linux_amd64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/sys/unix/asm_linux_amd64.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/asm_linux_arm.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/sys/unix/asm_linux_arm.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/asm_linux_arm64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/sys/unix/asm_linux_arm64.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/asm_linux_mips64x.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/sys/unix/asm_linux_mips64x.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/asm_linux_mipsx.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/sys/unix/asm_linux_mipsx.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/asm_linux_ppc64x.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/sys/unix/asm_linux_ppc64x.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/asm_linux_s390x.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/sys/unix/asm_linux_s390x.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/asm_netbsd_386.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/sys/unix/asm_netbsd_386.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/asm_netbsd_amd64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/sys/unix/asm_netbsd_amd64.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/asm_netbsd_arm.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/sys/unix/asm_netbsd_arm.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/asm_openbsd_386.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/sys/unix/asm_openbsd_386.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/asm_openbsd_amd64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/sys/unix/asm_openbsd_amd64.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/asm_openbsd_arm.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/sys/unix/asm_openbsd_arm.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/asm_solaris_amd64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/sys/unix/asm_solaris_amd64.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/bluetooth_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/sys/unix/bluetooth_linux.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/cap_freebsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/sys/unix/cap_freebsd.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/constants.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/sys/unix/constants.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/creds_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/sys/unix/creds_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/dev_darwin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/sys/unix/dev_darwin.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/dev_darwin_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/sys/unix/dev_darwin_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/dev_dragonfly.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/sys/unix/dev_dragonfly.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/dev_dragonfly_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/sys/unix/dev_dragonfly_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/dev_freebsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/sys/unix/dev_freebsd.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/dev_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/sys/unix/dev_linux.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/dev_linux_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/sys/unix/dev_linux_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/dev_netbsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/sys/unix/dev_netbsd.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/dev_netbsd_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/sys/unix/dev_netbsd_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/dev_openbsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/sys/unix/dev_openbsd.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/dev_openbsd_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/sys/unix/dev_openbsd_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/dev_solaris_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/sys/unix/dev_solaris_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/dirent.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/sys/unix/dirent.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/endian_big.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/sys/unix/endian_big.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/endian_little.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/sys/unix/endian_little.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/env_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/sys/unix/env_unix.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/env_unset.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/sys/unix/env_unset.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/errors_freebsd_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/sys/unix/errors_freebsd_386.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/errors_freebsd_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/sys/unix/errors_freebsd_arm.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/export_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/sys/unix/export_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/file_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/sys/unix/file_unix.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/flock.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/sys/unix/flock.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/flock_linux_32bit.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/sys/unix/flock_linux_32bit.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/gccgo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/sys/unix/gccgo.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/gccgo_c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/sys/unix/gccgo_c.c -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/gccgo_linux_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/sys/unix/gccgo_linux_amd64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/linux/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/sys/unix/linux/Dockerfile -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/linux/mkall.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/sys/unix/linux/mkall.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/linux/mksysnum.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/sys/unix/linux/mksysnum.pl -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/linux/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/sys/unix/linux/types.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/mkall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/sys/unix/mkall.sh -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/mkerrors.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/sys/unix/mkerrors.sh -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/mkpost.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/sys/unix/mkpost.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/mksyscall.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/sys/unix/mksyscall.pl -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/mksyscall_solaris.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/sys/unix/mksyscall_solaris.pl -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/mksysctl_openbsd.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/sys/unix/mksysctl_openbsd.pl -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/mksysnum_darwin.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/sys/unix/mksysnum_darwin.pl -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/mksysnum_dragonfly.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/sys/unix/mksysnum_dragonfly.pl -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/mksysnum_freebsd.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/sys/unix/mksysnum_freebsd.pl -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/mksysnum_netbsd.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/sys/unix/mksysnum_netbsd.pl -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/mksysnum_openbsd.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/sys/unix/mksysnum_openbsd.pl -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/mmap_unix_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/sys/unix/mmap_unix_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/openbsd_pledge.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/sys/unix/openbsd_pledge.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/openbsd_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/sys/unix/openbsd_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/pagesize_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/sys/unix/pagesize_unix.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/race.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/sys/unix/race.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/race0.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/sys/unix/race0.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/sockcmsg_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/sys/unix/sockcmsg_linux.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/sockcmsg_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/sys/unix/sockcmsg_unix.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/str.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/sys/unix/str.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/sys/unix/syscall.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_bsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/sys/unix/syscall_bsd.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_bsd_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/sys/unix/syscall_bsd_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_darwin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/sys/unix/syscall_darwin.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_darwin_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/sys/unix/syscall_darwin_386.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_darwin_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/sys/unix/syscall_darwin_arm.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_dragonfly.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/sys/unix/syscall_dragonfly.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_freebsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/sys/unix/syscall_freebsd.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/sys/unix/syscall_linux.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_linux_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/sys/unix/syscall_linux_386.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_linux_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/sys/unix/syscall_linux_arm.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_linux_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/sys/unix/syscall_linux_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_netbsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/sys/unix/syscall_netbsd.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_netbsd_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/sys/unix/syscall_netbsd_386.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_netbsd_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/sys/unix/syscall_netbsd_arm.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_no_getwd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/sys/unix/syscall_no_getwd.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_openbsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/sys/unix/syscall_openbsd.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_solaris.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/sys/unix/syscall_solaris.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/sys/unix/syscall_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/sys/unix/syscall_unix.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_unix_gc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/sys/unix/syscall_unix_gc.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_unix_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/sys/unix/syscall_unix_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/types_darwin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/sys/unix/types_darwin.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/types_dragonfly.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/sys/unix/types_dragonfly.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/types_freebsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/sys/unix/types_freebsd.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/types_netbsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/sys/unix/types_netbsd.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/types_openbsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/sys/unix/types_openbsd.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/types_solaris.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/sys/unix/types_solaris.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zerrors_darwin_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/sys/unix/zerrors_darwin_386.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zerrors_darwin_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/sys/unix/zerrors_darwin_arm.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zerrors_linux_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/sys/unix/zerrors_linux_386.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zerrors_linux_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/sys/unix/zerrors_linux_arm.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zerrors_linux_mips.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/sys/unix/zerrors_linux_mips.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zerrors_netbsd_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/sys/unix/zerrors_netbsd_386.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zerrors_netbsd_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/sys/unix/zerrors_netbsd_arm.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsyscall_linux_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/sys/unix/zsyscall_linux_386.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsyscall_linux_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/sys/unix/zsyscall_linux_arm.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsysctl_openbsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/sys/unix/zsysctl_openbsd.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsysnum_darwin_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/sys/unix/zsysnum_darwin_386.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsysnum_darwin_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/sys/unix/zsysnum_darwin_arm.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsysnum_linux_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/sys/unix/zsysnum_linux_386.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsysnum_linux_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/sys/unix/zsysnum_linux_arm.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsysnum_linux_mips.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/sys/unix/zsysnum_linux_mips.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsysnum_netbsd_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/sys/unix/zsysnum_netbsd_386.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsysnum_netbsd_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/sys/unix/zsysnum_netbsd_arm.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/ztypes_darwin_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/sys/unix/ztypes_darwin_386.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/ztypes_darwin_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/sys/unix/ztypes_darwin_arm.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/ztypes_freebsd_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/sys/unix/ztypes_freebsd_386.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/ztypes_freebsd_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/sys/unix/ztypes_freebsd_arm.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/ztypes_linux_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/sys/unix/ztypes_linux_386.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/ztypes_linux_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/sys/unix/ztypes_linux_amd64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/ztypes_linux_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/sys/unix/ztypes_linux_arm.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/ztypes_linux_arm64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/sys/unix/ztypes_linux_arm64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/ztypes_linux_mips.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/sys/unix/ztypes_linux_mips.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/ztypes_linux_ppc64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/sys/unix/ztypes_linux_ppc64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/ztypes_linux_s390x.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/sys/unix/ztypes_linux_s390x.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/ztypes_netbsd_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/sys/unix/ztypes_netbsd_386.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/ztypes_netbsd_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/sys/unix/ztypes_netbsd_arm.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/ztypes_openbsd_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/sys/unix/ztypes_openbsd_386.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/ztypes_openbsd_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/sys/unix/ztypes_openbsd_arm.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/asm_windows_386.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/sys/windows/asm_windows_386.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/dll_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/sys/windows/dll_windows.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/env_unset.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/sys/windows/env_unset.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/env_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/sys/windows/env_windows.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/eventlog.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/sys/windows/eventlog.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/exec_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/sys/windows/exec_windows.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/memory_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/sys/windows/memory_windows.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/mksyscall.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/sys/windows/mksyscall.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/race.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/sys/windows/race.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/race0.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/sys/windows/race0.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/registry/key.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/sys/windows/registry/key.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/registry/value.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/sys/windows/registry/value.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/sys/windows/service.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/str.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/sys/windows/str.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/svc/debug/log.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/sys/windows/svc/debug/log.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/svc/event.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/sys/windows/svc/event.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/svc/go12.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/sys/windows/svc/go12.c -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/svc/go12.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/sys/windows/svc/go12.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/svc/go13.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/sys/windows/svc/go13.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/svc/mgr/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/sys/windows/svc/mgr/config.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/svc/mgr/mgr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/sys/windows/svc/mgr/mgr.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/svc/mgr/service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/sys/windows/svc/mgr/service.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/svc/security.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/sys/windows/svc/security.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/svc/service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/sys/windows/svc/service.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/svc/svc_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/sys/windows/svc/svc_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/svc/sys_386.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/sys/windows/svc/sys_386.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/svc/sys_amd64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/sys/windows/svc/sys_amd64.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/syscall.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/sys/windows/syscall.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/syscall_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/sys/windows/syscall_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/syscall_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/sys/windows/syscall_windows.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/types_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/golang.org/x/sys/windows/types_windows.go -------------------------------------------------------------------------------- /vendor/gopkg.in/mgo.v2/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/gopkg.in/mgo.v2/.travis.yml -------------------------------------------------------------------------------- /vendor/gopkg.in/mgo.v2/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/gopkg.in/mgo.v2/LICENSE -------------------------------------------------------------------------------- /vendor/gopkg.in/mgo.v2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/gopkg.in/mgo.v2/Makefile -------------------------------------------------------------------------------- /vendor/gopkg.in/mgo.v2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/gopkg.in/mgo.v2/README.md -------------------------------------------------------------------------------- /vendor/gopkg.in/mgo.v2/auth.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/gopkg.in/mgo.v2/auth.go -------------------------------------------------------------------------------- /vendor/gopkg.in/mgo.v2/auth_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/gopkg.in/mgo.v2/auth_test.go -------------------------------------------------------------------------------- /vendor/gopkg.in/mgo.v2/bson/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/gopkg.in/mgo.v2/bson/LICENSE -------------------------------------------------------------------------------- /vendor/gopkg.in/mgo.v2/bson/bson.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/gopkg.in/mgo.v2/bson/bson.go -------------------------------------------------------------------------------- /vendor/gopkg.in/mgo.v2/bson/bson_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/gopkg.in/mgo.v2/bson/bson_test.go -------------------------------------------------------------------------------- /vendor/gopkg.in/mgo.v2/bson/decimal.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/gopkg.in/mgo.v2/bson/decimal.go -------------------------------------------------------------------------------- /vendor/gopkg.in/mgo.v2/bson/decimal_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/gopkg.in/mgo.v2/bson/decimal_test.go -------------------------------------------------------------------------------- /vendor/gopkg.in/mgo.v2/bson/decode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/gopkg.in/mgo.v2/bson/decode.go -------------------------------------------------------------------------------- /vendor/gopkg.in/mgo.v2/bson/encode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/gopkg.in/mgo.v2/bson/encode.go -------------------------------------------------------------------------------- /vendor/gopkg.in/mgo.v2/bson/json.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/gopkg.in/mgo.v2/bson/json.go -------------------------------------------------------------------------------- /vendor/gopkg.in/mgo.v2/bson/json_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/gopkg.in/mgo.v2/bson/json_test.go -------------------------------------------------------------------------------- /vendor/gopkg.in/mgo.v2/bson/specdata/update.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/gopkg.in/mgo.v2/bson/specdata/update.sh -------------------------------------------------------------------------------- /vendor/gopkg.in/mgo.v2/bson/specdata_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/gopkg.in/mgo.v2/bson/specdata_test.go -------------------------------------------------------------------------------- /vendor/gopkg.in/mgo.v2/bulk.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/gopkg.in/mgo.v2/bulk.go -------------------------------------------------------------------------------- /vendor/gopkg.in/mgo.v2/bulk_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/gopkg.in/mgo.v2/bulk_test.go -------------------------------------------------------------------------------- /vendor/gopkg.in/mgo.v2/cluster.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/gopkg.in/mgo.v2/cluster.go -------------------------------------------------------------------------------- /vendor/gopkg.in/mgo.v2/cluster_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/gopkg.in/mgo.v2/cluster_test.go -------------------------------------------------------------------------------- /vendor/gopkg.in/mgo.v2/dbtest/dbserver.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/gopkg.in/mgo.v2/dbtest/dbserver.go -------------------------------------------------------------------------------- /vendor/gopkg.in/mgo.v2/dbtest/dbserver_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/gopkg.in/mgo.v2/dbtest/dbserver_test.go -------------------------------------------------------------------------------- /vendor/gopkg.in/mgo.v2/dbtest/export_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/gopkg.in/mgo.v2/dbtest/export_test.go -------------------------------------------------------------------------------- /vendor/gopkg.in/mgo.v2/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/gopkg.in/mgo.v2/doc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/mgo.v2/export_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/gopkg.in/mgo.v2/export_test.go -------------------------------------------------------------------------------- /vendor/gopkg.in/mgo.v2/gridfs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/gopkg.in/mgo.v2/gridfs.go -------------------------------------------------------------------------------- /vendor/gopkg.in/mgo.v2/gridfs_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/gopkg.in/mgo.v2/gridfs_test.go -------------------------------------------------------------------------------- /vendor/gopkg.in/mgo.v2/harness/certs/client.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/gopkg.in/mgo.v2/harness/certs/client.crt -------------------------------------------------------------------------------- /vendor/gopkg.in/mgo.v2/harness/certs/client.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/gopkg.in/mgo.v2/harness/certs/client.key -------------------------------------------------------------------------------- /vendor/gopkg.in/mgo.v2/harness/certs/client.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/gopkg.in/mgo.v2/harness/certs/client.pem -------------------------------------------------------------------------------- /vendor/gopkg.in/mgo.v2/harness/certs/client.req: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/gopkg.in/mgo.v2/harness/certs/client.req -------------------------------------------------------------------------------- /vendor/gopkg.in/mgo.v2/harness/certs/server.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/gopkg.in/mgo.v2/harness/certs/server.crt -------------------------------------------------------------------------------- /vendor/gopkg.in/mgo.v2/harness/certs/server.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/gopkg.in/mgo.v2/harness/certs/server.key -------------------------------------------------------------------------------- /vendor/gopkg.in/mgo.v2/harness/certs/server.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/gopkg.in/mgo.v2/harness/certs/server.pem -------------------------------------------------------------------------------- /vendor/gopkg.in/mgo.v2/harness/daemons/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/gopkg.in/mgo.v2/harness/daemons/.env -------------------------------------------------------------------------------- /vendor/gopkg.in/mgo.v2/harness/daemons/cfg1/db/.empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/gopkg.in/mgo.v2/harness/daemons/cfg1/db/mongod.lock: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/gopkg.in/mgo.v2/harness/daemons/cfg1/log/run: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | exec cat - > log.txt 4 | -------------------------------------------------------------------------------- /vendor/gopkg.in/mgo.v2/harness/daemons/cfg1/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/gopkg.in/mgo.v2/harness/daemons/cfg1/run -------------------------------------------------------------------------------- /vendor/gopkg.in/mgo.v2/harness/daemons/cfg2/db/.empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/gopkg.in/mgo.v2/harness/daemons/cfg2/log/run: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | exec cat - > log.txt 4 | -------------------------------------------------------------------------------- /vendor/gopkg.in/mgo.v2/harness/daemons/cfg2/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/gopkg.in/mgo.v2/harness/daemons/cfg2/run -------------------------------------------------------------------------------- /vendor/gopkg.in/mgo.v2/harness/daemons/cfg3/db/.empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/gopkg.in/mgo.v2/harness/daemons/cfg3/log/run: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | exec cat - > log.txt 4 | -------------------------------------------------------------------------------- /vendor/gopkg.in/mgo.v2/harness/daemons/cfg3/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/gopkg.in/mgo.v2/harness/daemons/cfg3/run -------------------------------------------------------------------------------- /vendor/gopkg.in/mgo.v2/harness/daemons/db1/db/.empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/gopkg.in/mgo.v2/harness/daemons/db1/log/run: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | exec cat - > log.txt 4 | -------------------------------------------------------------------------------- /vendor/gopkg.in/mgo.v2/harness/daemons/db1/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/gopkg.in/mgo.v2/harness/daemons/db1/run -------------------------------------------------------------------------------- /vendor/gopkg.in/mgo.v2/harness/daemons/db2/db/.empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/gopkg.in/mgo.v2/harness/daemons/db2/log/run: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | exec cat - > log.txt 4 | -------------------------------------------------------------------------------- /vendor/gopkg.in/mgo.v2/harness/daemons/db2/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/gopkg.in/mgo.v2/harness/daemons/db2/run -------------------------------------------------------------------------------- /vendor/gopkg.in/mgo.v2/harness/daemons/db3/db/.empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/gopkg.in/mgo.v2/harness/daemons/db3/log/run: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | exec cat - > log.txt 4 | -------------------------------------------------------------------------------- /vendor/gopkg.in/mgo.v2/harness/daemons/db3/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/gopkg.in/mgo.v2/harness/daemons/db3/run -------------------------------------------------------------------------------- /vendor/gopkg.in/mgo.v2/harness/daemons/rs1a/db/.empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/gopkg.in/mgo.v2/harness/daemons/rs1a/log/run: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | exec cat - > log.txt 4 | -------------------------------------------------------------------------------- /vendor/gopkg.in/mgo.v2/harness/daemons/rs1a/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/gopkg.in/mgo.v2/harness/daemons/rs1a/run -------------------------------------------------------------------------------- /vendor/gopkg.in/mgo.v2/harness/daemons/rs1b/db/.empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/gopkg.in/mgo.v2/harness/daemons/rs1b/log/run: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | exec cat - > log.txt 4 | -------------------------------------------------------------------------------- /vendor/gopkg.in/mgo.v2/harness/daemons/rs1b/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/gopkg.in/mgo.v2/harness/daemons/rs1b/run -------------------------------------------------------------------------------- /vendor/gopkg.in/mgo.v2/harness/daemons/rs1c/db/.empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/gopkg.in/mgo.v2/harness/daemons/rs1c/log/run: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | exec cat - > log.txt 4 | -------------------------------------------------------------------------------- /vendor/gopkg.in/mgo.v2/harness/daemons/rs1c/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/gopkg.in/mgo.v2/harness/daemons/rs1c/run -------------------------------------------------------------------------------- /vendor/gopkg.in/mgo.v2/harness/daemons/rs2a/db/.empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/gopkg.in/mgo.v2/harness/daemons/rs2a/log/run: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | exec cat - > log.txt 4 | -------------------------------------------------------------------------------- /vendor/gopkg.in/mgo.v2/harness/daemons/rs2a/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/gopkg.in/mgo.v2/harness/daemons/rs2a/run -------------------------------------------------------------------------------- /vendor/gopkg.in/mgo.v2/harness/daemons/rs2b/db/.empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/gopkg.in/mgo.v2/harness/daemons/rs2b/log/run: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | exec cat - > log.txt 4 | -------------------------------------------------------------------------------- /vendor/gopkg.in/mgo.v2/harness/daemons/rs2b/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/gopkg.in/mgo.v2/harness/daemons/rs2b/run -------------------------------------------------------------------------------- /vendor/gopkg.in/mgo.v2/harness/daemons/rs2c/db/.empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/gopkg.in/mgo.v2/harness/daemons/rs2c/log/run: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | exec cat - > log.txt 4 | -------------------------------------------------------------------------------- /vendor/gopkg.in/mgo.v2/harness/daemons/rs2c/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/gopkg.in/mgo.v2/harness/daemons/rs2c/run -------------------------------------------------------------------------------- /vendor/gopkg.in/mgo.v2/harness/daemons/rs3a/db/.empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/gopkg.in/mgo.v2/harness/daemons/rs3a/log/run: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | exec cat - > log.txt 4 | -------------------------------------------------------------------------------- /vendor/gopkg.in/mgo.v2/harness/daemons/rs3a/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/gopkg.in/mgo.v2/harness/daemons/rs3a/run -------------------------------------------------------------------------------- /vendor/gopkg.in/mgo.v2/harness/daemons/rs3b/db/.empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/gopkg.in/mgo.v2/harness/daemons/rs3b/log/run: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | exec cat - > log.txt 4 | -------------------------------------------------------------------------------- /vendor/gopkg.in/mgo.v2/harness/daemons/rs3b/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/gopkg.in/mgo.v2/harness/daemons/rs3b/run -------------------------------------------------------------------------------- /vendor/gopkg.in/mgo.v2/harness/daemons/rs3c/db/.empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/gopkg.in/mgo.v2/harness/daemons/rs3c/log/run: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | exec cat - > log.txt 4 | -------------------------------------------------------------------------------- /vendor/gopkg.in/mgo.v2/harness/daemons/rs3c/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/gopkg.in/mgo.v2/harness/daemons/rs3c/run -------------------------------------------------------------------------------- /vendor/gopkg.in/mgo.v2/harness/daemons/rs4a/db/.empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/gopkg.in/mgo.v2/harness/daemons/rs4a/log/run: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | exec cat - > log.txt 4 | -------------------------------------------------------------------------------- /vendor/gopkg.in/mgo.v2/harness/daemons/rs4a/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/gopkg.in/mgo.v2/harness/daemons/rs4a/run -------------------------------------------------------------------------------- /vendor/gopkg.in/mgo.v2/harness/daemons/s1/log/run: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | exec cat - > log.txt 4 | -------------------------------------------------------------------------------- /vendor/gopkg.in/mgo.v2/harness/daemons/s1/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/gopkg.in/mgo.v2/harness/daemons/s1/run -------------------------------------------------------------------------------- /vendor/gopkg.in/mgo.v2/harness/daemons/s2/log/run: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | exec cat - > log.txt 4 | -------------------------------------------------------------------------------- /vendor/gopkg.in/mgo.v2/harness/daemons/s2/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/gopkg.in/mgo.v2/harness/daemons/s2/run -------------------------------------------------------------------------------- /vendor/gopkg.in/mgo.v2/harness/daemons/s3/log/run: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | exec cat - > log.txt 4 | -------------------------------------------------------------------------------- /vendor/gopkg.in/mgo.v2/harness/daemons/s3/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/gopkg.in/mgo.v2/harness/daemons/s3/run -------------------------------------------------------------------------------- /vendor/gopkg.in/mgo.v2/harness/mongojs/dropall.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/gopkg.in/mgo.v2/harness/mongojs/dropall.js -------------------------------------------------------------------------------- /vendor/gopkg.in/mgo.v2/harness/mongojs/init.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/gopkg.in/mgo.v2/harness/mongojs/init.js -------------------------------------------------------------------------------- /vendor/gopkg.in/mgo.v2/harness/mongojs/wait.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/gopkg.in/mgo.v2/harness/mongojs/wait.js -------------------------------------------------------------------------------- /vendor/gopkg.in/mgo.v2/harness/setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/gopkg.in/mgo.v2/harness/setup.sh -------------------------------------------------------------------------------- /vendor/gopkg.in/mgo.v2/internal/json/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/gopkg.in/mgo.v2/internal/json/LICENSE -------------------------------------------------------------------------------- /vendor/gopkg.in/mgo.v2/internal/json/bench_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/gopkg.in/mgo.v2/internal/json/bench_test.go -------------------------------------------------------------------------------- /vendor/gopkg.in/mgo.v2/internal/json/decode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/gopkg.in/mgo.v2/internal/json/decode.go -------------------------------------------------------------------------------- /vendor/gopkg.in/mgo.v2/internal/json/encode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/gopkg.in/mgo.v2/internal/json/encode.go -------------------------------------------------------------------------------- /vendor/gopkg.in/mgo.v2/internal/json/extension.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/gopkg.in/mgo.v2/internal/json/extension.go -------------------------------------------------------------------------------- /vendor/gopkg.in/mgo.v2/internal/json/fold.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/gopkg.in/mgo.v2/internal/json/fold.go -------------------------------------------------------------------------------- /vendor/gopkg.in/mgo.v2/internal/json/fold_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/gopkg.in/mgo.v2/internal/json/fold_test.go -------------------------------------------------------------------------------- /vendor/gopkg.in/mgo.v2/internal/json/indent.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/gopkg.in/mgo.v2/internal/json/indent.go -------------------------------------------------------------------------------- /vendor/gopkg.in/mgo.v2/internal/json/scanner.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/gopkg.in/mgo.v2/internal/json/scanner.go -------------------------------------------------------------------------------- /vendor/gopkg.in/mgo.v2/internal/json/stream.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/gopkg.in/mgo.v2/internal/json/stream.go -------------------------------------------------------------------------------- /vendor/gopkg.in/mgo.v2/internal/json/tags.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/gopkg.in/mgo.v2/internal/json/tags.go -------------------------------------------------------------------------------- /vendor/gopkg.in/mgo.v2/internal/json/tags_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/gopkg.in/mgo.v2/internal/json/tags_test.go -------------------------------------------------------------------------------- /vendor/gopkg.in/mgo.v2/internal/sasl/sasl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/gopkg.in/mgo.v2/internal/sasl/sasl.c -------------------------------------------------------------------------------- /vendor/gopkg.in/mgo.v2/internal/sasl/sasl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/gopkg.in/mgo.v2/internal/sasl/sasl.go -------------------------------------------------------------------------------- /vendor/gopkg.in/mgo.v2/internal/scram/scram.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/gopkg.in/mgo.v2/internal/scram/scram.go -------------------------------------------------------------------------------- /vendor/gopkg.in/mgo.v2/log.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/gopkg.in/mgo.v2/log.go -------------------------------------------------------------------------------- /vendor/gopkg.in/mgo.v2/queue.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/gopkg.in/mgo.v2/queue.go -------------------------------------------------------------------------------- /vendor/gopkg.in/mgo.v2/queue_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/gopkg.in/mgo.v2/queue_test.go -------------------------------------------------------------------------------- /vendor/gopkg.in/mgo.v2/raceoff.go: -------------------------------------------------------------------------------- 1 | // +build !race 2 | 3 | package mgo 4 | 5 | const raceDetector = false 6 | -------------------------------------------------------------------------------- /vendor/gopkg.in/mgo.v2/raceon.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/gopkg.in/mgo.v2/raceon.go -------------------------------------------------------------------------------- /vendor/gopkg.in/mgo.v2/saslimpl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/gopkg.in/mgo.v2/saslimpl.go -------------------------------------------------------------------------------- /vendor/gopkg.in/mgo.v2/saslstub.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/gopkg.in/mgo.v2/saslstub.go -------------------------------------------------------------------------------- /vendor/gopkg.in/mgo.v2/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/gopkg.in/mgo.v2/server.go -------------------------------------------------------------------------------- /vendor/gopkg.in/mgo.v2/session.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/gopkg.in/mgo.v2/session.go -------------------------------------------------------------------------------- /vendor/gopkg.in/mgo.v2/session_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/gopkg.in/mgo.v2/session_test.go -------------------------------------------------------------------------------- /vendor/gopkg.in/mgo.v2/socket.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/gopkg.in/mgo.v2/socket.go -------------------------------------------------------------------------------- /vendor/gopkg.in/mgo.v2/stats.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/gopkg.in/mgo.v2/stats.go -------------------------------------------------------------------------------- /vendor/gopkg.in/mgo.v2/suite_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/gopkg.in/mgo.v2/suite_test.go -------------------------------------------------------------------------------- /vendor/gopkg.in/mgo.v2/syscall_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/gopkg.in/mgo.v2/syscall_test.go -------------------------------------------------------------------------------- /vendor/gopkg.in/mgo.v2/syscall_windows_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/gopkg.in/mgo.v2/syscall_windows_test.go -------------------------------------------------------------------------------- /vendor/gopkg.in/mgo.v2/txn/chaos.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/gopkg.in/mgo.v2/txn/chaos.go -------------------------------------------------------------------------------- /vendor/gopkg.in/mgo.v2/txn/debug.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/gopkg.in/mgo.v2/txn/debug.go -------------------------------------------------------------------------------- /vendor/gopkg.in/mgo.v2/txn/dockey_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/gopkg.in/mgo.v2/txn/dockey_test.go -------------------------------------------------------------------------------- /vendor/gopkg.in/mgo.v2/txn/flusher.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/gopkg.in/mgo.v2/txn/flusher.go -------------------------------------------------------------------------------- /vendor/gopkg.in/mgo.v2/txn/output.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/gopkg.in/mgo.v2/txn/sim_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/gopkg.in/mgo.v2/txn/sim_test.go -------------------------------------------------------------------------------- /vendor/gopkg.in/mgo.v2/txn/tarjan.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/gopkg.in/mgo.v2/txn/tarjan.go -------------------------------------------------------------------------------- /vendor/gopkg.in/mgo.v2/txn/tarjan_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/gopkg.in/mgo.v2/txn/tarjan_test.go -------------------------------------------------------------------------------- /vendor/gopkg.in/mgo.v2/txn/txn.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/gopkg.in/mgo.v2/txn/txn.go -------------------------------------------------------------------------------- /vendor/gopkg.in/mgo.v2/txn/txn_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/gopkg.in/mgo.v2/txn/txn_test.go -------------------------------------------------------------------------------- /vendor/gopkg.in/urfave/cli.v1/.flake8: -------------------------------------------------------------------------------- 1 | [flake8] 2 | max-line-length = 120 3 | -------------------------------------------------------------------------------- /vendor/gopkg.in/urfave/cli.v1/.gitignore: -------------------------------------------------------------------------------- 1 | *.coverprofile 2 | node_modules/ 3 | -------------------------------------------------------------------------------- /vendor/gopkg.in/urfave/cli.v1/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/gopkg.in/urfave/cli.v1/.travis.yml -------------------------------------------------------------------------------- /vendor/gopkg.in/urfave/cli.v1/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/gopkg.in/urfave/cli.v1/CHANGELOG.md -------------------------------------------------------------------------------- /vendor/gopkg.in/urfave/cli.v1/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/gopkg.in/urfave/cli.v1/LICENSE -------------------------------------------------------------------------------- /vendor/gopkg.in/urfave/cli.v1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/gopkg.in/urfave/cli.v1/README.md -------------------------------------------------------------------------------- /vendor/gopkg.in/urfave/cli.v1/altsrc/altsrc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/gopkg.in/urfave/cli.v1/altsrc/altsrc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/urfave/cli.v1/altsrc/flag.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/gopkg.in/urfave/cli.v1/altsrc/flag.go -------------------------------------------------------------------------------- /vendor/gopkg.in/urfave/cli.v1/altsrc/flag_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/gopkg.in/urfave/cli.v1/altsrc/flag_test.go -------------------------------------------------------------------------------- /vendor/gopkg.in/urfave/cli.v1/app.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/gopkg.in/urfave/cli.v1/app.go -------------------------------------------------------------------------------- /vendor/gopkg.in/urfave/cli.v1/app_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/gopkg.in/urfave/cli.v1/app_test.go -------------------------------------------------------------------------------- /vendor/gopkg.in/urfave/cli.v1/appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/gopkg.in/urfave/cli.v1/appveyor.yml -------------------------------------------------------------------------------- /vendor/gopkg.in/urfave/cli.v1/category.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/gopkg.in/urfave/cli.v1/category.go -------------------------------------------------------------------------------- /vendor/gopkg.in/urfave/cli.v1/cli.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/gopkg.in/urfave/cli.v1/cli.go -------------------------------------------------------------------------------- /vendor/gopkg.in/urfave/cli.v1/command.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/gopkg.in/urfave/cli.v1/command.go -------------------------------------------------------------------------------- /vendor/gopkg.in/urfave/cli.v1/command_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/gopkg.in/urfave/cli.v1/command_test.go -------------------------------------------------------------------------------- /vendor/gopkg.in/urfave/cli.v1/context.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/gopkg.in/urfave/cli.v1/context.go -------------------------------------------------------------------------------- /vendor/gopkg.in/urfave/cli.v1/context_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/gopkg.in/urfave/cli.v1/context_test.go -------------------------------------------------------------------------------- /vendor/gopkg.in/urfave/cli.v1/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/gopkg.in/urfave/cli.v1/errors.go -------------------------------------------------------------------------------- /vendor/gopkg.in/urfave/cli.v1/errors_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/gopkg.in/urfave/cli.v1/errors_test.go -------------------------------------------------------------------------------- /vendor/gopkg.in/urfave/cli.v1/flag-types.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/gopkg.in/urfave/cli.v1/flag-types.json -------------------------------------------------------------------------------- /vendor/gopkg.in/urfave/cli.v1/flag.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/gopkg.in/urfave/cli.v1/flag.go -------------------------------------------------------------------------------- /vendor/gopkg.in/urfave/cli.v1/flag_generated.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/gopkg.in/urfave/cli.v1/flag_generated.go -------------------------------------------------------------------------------- /vendor/gopkg.in/urfave/cli.v1/flag_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/gopkg.in/urfave/cli.v1/flag_test.go -------------------------------------------------------------------------------- /vendor/gopkg.in/urfave/cli.v1/funcs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/gopkg.in/urfave/cli.v1/funcs.go -------------------------------------------------------------------------------- /vendor/gopkg.in/urfave/cli.v1/generate-flag-types: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/gopkg.in/urfave/cli.v1/generate-flag-types -------------------------------------------------------------------------------- /vendor/gopkg.in/urfave/cli.v1/help.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/gopkg.in/urfave/cli.v1/help.go -------------------------------------------------------------------------------- /vendor/gopkg.in/urfave/cli.v1/help_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/gopkg.in/urfave/cli.v1/help_test.go -------------------------------------------------------------------------------- /vendor/gopkg.in/urfave/cli.v1/helpers_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/gopkg.in/urfave/cli.v1/helpers_test.go -------------------------------------------------------------------------------- /vendor/gopkg.in/urfave/cli.v1/helpers_unix_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/gopkg.in/urfave/cli.v1/helpers_unix_test.go -------------------------------------------------------------------------------- /vendor/gopkg.in/urfave/cli.v1/runtests: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/vendor/gopkg.in/urfave/cli.v1/runtests -------------------------------------------------------------------------------- /web/controller.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/web/controller.go -------------------------------------------------------------------------------- /web/router.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/web/router.go -------------------------------------------------------------------------------- /web/statistics-middleware.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/web/statistics-middleware.go -------------------------------------------------------------------------------- /web/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/web/utils.go -------------------------------------------------------------------------------- /web/web-server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/web/web-server.go -------------------------------------------------------------------------------- /web/web_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sfeir/golang-200/HEAD/web/web_test.go --------------------------------------------------------------------------------