├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── api ├── .dockerignore ├── .gitignore ├── Dockerfile ├── Gopkg.lock ├── Gopkg.toml ├── Makefile ├── config │ └── config.go ├── docker-compose.tools.yml ├── docker-compose.yml ├── handlers │ ├── frames.go │ ├── frames_test.go │ ├── handlers.go │ ├── handlers_test.go │ ├── projects.go │ ├── projects_test.go │ ├── teams.go │ ├── teams_test.go │ ├── users.go │ └── users_test.go ├── main.go ├── middleware │ ├── auth.go │ └── middleware.go ├── migrations │ ├── 00001_create_users_table.up.sql │ ├── 00002_update_user_table_with_auth0_field.up.sql │ ├── 00003_drop_extension_uuid.up.sql │ ├── 00004_create_projects_table.up.sql │ ├── 00005_create_create_frames_table.up.sql │ ├── 00006_add_synchronized_at_field_to_frames.up.sql │ ├── 00007_add_watson_token_to_users.up.sql │ ├── 00008_add_tags_column_to_frames.up.sql │ ├── 00009_add_unique_constraint_to_user_auth0_id.up.sql │ ├── 00010_change_watson_token_col_to_api_token.up.sql │ ├── 00011_change_frame_id_type_to_uuid.up.sql │ ├── 00012_create_table_teams.up.sql │ ├── 00013_add_not_null_constraints.up.sql │ ├── 00014_add_avatar_url_to_users.up.sql │ ├── 00015_create_project_activities_view.up.sql │ ├── 00016_add_unique_constraint_to_teams.up.sql │ └── Dockerfile ├── models │ ├── frames.go │ ├── models.go │ ├── projects.go │ ├── sql.go │ ├── sql_test.go │ ├── teams.go │ ├── users.go │ ├── users_test.go │ └── workloads.go ├── scripts │ └── watson_push.py └── vendor │ ├── github.com │ ├── NYTimes │ │ └── gziphandler │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── CODE_OF_CONDUCT.md │ │ │ ├── CONTRIBUTING.md │ │ │ ├── LICENSE.md │ │ │ ├── README.md │ │ │ ├── gzip.go │ │ │ ├── gzip_go18.go │ │ │ ├── gzip_go18_test.go │ │ │ ├── gzip_test.go │ │ │ └── testdata │ │ │ └── benchmark.json │ ├── auth0-community │ │ └── go-auth0 │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── auth0.go │ │ │ ├── auth0_test.go │ │ │ ├── common_test.go │ │ │ ├── jwk_client.go │ │ │ ├── middlewares │ │ │ ├── auth0.go │ │ │ └── gin │ │ │ │ └── auth_group.go │ │ │ ├── token_extraction.go │ │ │ └── token_extraction_test.go │ ├── coreos │ │ └── go-systemd │ │ │ ├── .travis.yml │ │ │ ├── CONTRIBUTING.md │ │ │ ├── DCO │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── activation │ │ │ ├── files.go │ │ │ ├── files_test.go │ │ │ ├── listeners.go │ │ │ ├── listeners_test.go │ │ │ ├── packetconns.go │ │ │ └── packetconns_test.go │ │ │ ├── daemon │ │ │ ├── sdnotify.go │ │ │ ├── sdnotify_test.go │ │ │ ├── watchdog.go │ │ │ └── watchdog_test.go │ │ │ ├── dbus │ │ │ ├── dbus.go │ │ │ ├── dbus_test.go │ │ │ ├── methods.go │ │ │ ├── methods_test.go │ │ │ ├── properties.go │ │ │ ├── set.go │ │ │ ├── set_test.go │ │ │ ├── subscription.go │ │ │ ├── subscription_set.go │ │ │ ├── subscription_set_test.go │ │ │ └── subscription_test.go │ │ │ ├── examples │ │ │ └── activation │ │ │ │ ├── activation.go │ │ │ │ ├── httpserver │ │ │ │ ├── README.md │ │ │ │ ├── hello.service │ │ │ │ ├── hello.socket │ │ │ │ └── httpserver.go │ │ │ │ ├── listen.go │ │ │ │ └── udpconn.go │ │ │ ├── fixtures │ │ │ ├── enable-disable.service │ │ │ ├── mask-unmask.service │ │ │ ├── reload.service │ │ │ ├── start-failed.service │ │ │ ├── start-stop.service │ │ │ ├── subscribe-events-set.service │ │ │ └── subscribe-events.service │ │ │ ├── journal │ │ │ └── journal.go │ │ │ ├── login1 │ │ │ ├── dbus.go │ │ │ └── dbus_test.go │ │ │ ├── machine1 │ │ │ ├── dbus.go │ │ │ └── dbus_test.go │ │ │ ├── sdjournal │ │ │ ├── functions.go │ │ │ ├── functions_test.go │ │ │ ├── journal.go │ │ │ ├── journal_test.go │ │ │ └── read.go │ │ │ ├── test │ │ │ ├── unit │ │ │ ├── deserialize.go │ │ │ ├── deserialize_test.go │ │ │ ├── end_to_end_test.go │ │ │ ├── escape.go │ │ │ ├── escape_test.go │ │ │ ├── option.go │ │ │ ├── option_test.go │ │ │ ├── serialize.go │ │ │ └── serialize_test.go │ │ │ └── util │ │ │ ├── util.go │ │ │ ├── util_cgo.go │ │ │ ├── util_stub.go │ │ │ └── util_test.go │ ├── go-errors │ │ └── errors │ │ │ ├── LICENSE.MIT │ │ │ ├── README.md │ │ │ ├── cover.out │ │ │ ├── error.go │ │ │ ├── error_test.go │ │ │ ├── parse_panic.go │ │ │ ├── parse_panic_test.go │ │ │ └── stackframe.go │ ├── jmoiron │ │ └── sqlx │ │ │ ├── .gitignore │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── bind.go │ │ │ ├── doc.go │ │ │ ├── named.go │ │ │ ├── named_context.go │ │ │ ├── named_context_test.go │ │ │ ├── named_test.go │ │ │ ├── reflectx │ │ │ ├── README.md │ │ │ ├── reflect.go │ │ │ └── reflect_test.go │ │ │ ├── sqlx.go │ │ │ ├── sqlx_context.go │ │ │ ├── sqlx_context_test.go │ │ │ ├── sqlx_test.go │ │ │ └── types │ │ │ ├── README.md │ │ │ ├── types.go │ │ │ └── types_test.go │ ├── julienschmidt │ │ └── httprouter │ │ │ ├── .travis.yml │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── path.go │ │ │ ├── path_test.go │ │ │ ├── router.go │ │ │ ├── router_test.go │ │ │ ├── tree.go │ │ │ └── tree_test.go │ ├── justinas │ │ └── alice │ │ │ ├── .travis.yml │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── chain.go │ │ │ └── chain_test.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 │ │ │ ├── go18_test.go │ │ │ ├── hstore │ │ │ ├── hstore.go │ │ │ └── hstore_test.go │ │ │ ├── issues_test.go │ │ │ ├── listen_example │ │ │ └── doc.go │ │ │ ├── notify.go │ │ │ ├── notify_test.go │ │ │ ├── oid │ │ │ ├── doc.go │ │ │ ├── gen.go │ │ │ └── types.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 │ ├── 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 │ │ │ │ ├── martini │ │ │ │ │ └── server.go │ │ │ │ ├── negroni │ │ │ │ │ └── server.go │ │ │ │ ├── nethttp │ │ │ │ │ └── server.go │ │ │ │ ├── openbar │ │ │ │ │ └── server.go │ │ │ │ └── xhandler │ │ │ │ │ └── server.go │ │ │ ├── utils.go │ │ │ └── utils_test.go │ │ └── xhandler │ │ │ ├── .travis.yml │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── chain.go │ │ │ ├── chain_example_test.go │ │ │ ├── chain_test.go │ │ │ ├── middleware.go │ │ │ ├── middleware_test.go │ │ │ ├── xhandler.go │ │ │ ├── xhandler_example_test.go │ │ │ ├── xhandler_test.go │ │ │ └── xmux │ │ │ └── README.md │ ├── satori │ │ └── go.uuid │ │ │ ├── .travis.yml │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── benchmarks_test.go │ │ │ ├── uuid.go │ │ │ └── uuid_test.go │ └── square │ │ └── go-jose │ │ ├── .gitcookies.sh.enc │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── BUG-BOUNTY.md │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── asymmetric.go │ │ ├── asymmetric_test.go │ │ ├── cipher │ │ ├── cbc_hmac.go │ │ ├── cbc_hmac_test.go │ │ ├── concat_kdf.go │ │ ├── concat_kdf_test.go │ │ ├── ecdh_es.go │ │ ├── ecdh_es_test.go │ │ ├── key_wrap.go │ │ └── key_wrap_test.go │ │ ├── crypter.go │ │ ├── crypter_test.go │ │ ├── doc.go │ │ ├── doc_test.go │ │ ├── encoding.go │ │ ├── encoding_test.go │ │ ├── jose-util │ │ ├── README.md │ │ ├── jose-util.t │ │ └── main.go │ │ ├── json │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bench_test.go │ │ ├── decode.go │ │ ├── decode_test.go │ │ ├── encode.go │ │ ├── encode_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 │ │ └── testdata │ │ │ └── code.json.gz │ │ ├── json_fork_test.go │ │ ├── jwe.go │ │ ├── jwe_test.go │ │ ├── jwk.go │ │ ├── jwk_test.go │ │ ├── jws.go │ │ ├── jws_test.go │ │ ├── shared.go │ │ ├── signing.go │ │ ├── signing_test.go │ │ ├── symmetric.go │ │ ├── symmetric_test.go │ │ ├── utils.go │ │ └── utils_test.go │ ├── go.uber.org │ ├── atomic │ │ ├── .github │ │ │ └── PULL_REQUEST_TEMPLATE.md │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── LICENSE.txt │ │ ├── Makefile │ │ ├── README.md │ │ ├── atomic.go │ │ ├── atomic_test.go │ │ ├── example_test.go │ │ ├── glide.lock │ │ ├── glide.yaml │ │ ├── scripts │ │ │ ├── cover.sh │ │ │ └── test-ubergo.sh │ │ ├── stress_test.go │ │ ├── string.go │ │ └── string_test.go │ └── zap │ │ ├── .gitignore │ │ ├── .readme.tmpl │ │ ├── .travis.yml │ │ ├── CHANGELOG.md │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE.txt │ │ ├── Makefile │ │ ├── README.md │ │ ├── array.go │ │ ├── array_test.go │ │ ├── benchmarks │ │ ├── apex_test.go │ │ ├── doc.go │ │ ├── kit_test.go │ │ ├── lion_test.go │ │ ├── log15_test.go │ │ ├── logrus_test.go │ │ ├── scenario_bench_test.go │ │ └── zap_test.go │ │ ├── buffer │ │ ├── buffer.go │ │ ├── buffer_test.go │ │ ├── pool.go │ │ └── pool_test.go │ │ ├── check_license.sh │ │ ├── common_test.go │ │ ├── config.go │ │ ├── config_test.go │ │ ├── doc.go │ │ ├── encoder.go │ │ ├── encoder_test.go │ │ ├── field.go │ │ ├── field_test.go │ │ ├── flag.go │ │ ├── flag_test.go │ │ ├── glide.lock │ │ ├── glide.yaml │ │ ├── global.go │ │ ├── global_test.go │ │ ├── http_handler.go │ │ ├── http_handler_test.go │ │ ├── internal │ │ ├── bufferpool │ │ │ └── bufferpool.go │ │ ├── color │ │ │ ├── color.go │ │ │ └── color_test.go │ │ ├── exit │ │ │ ├── exit.go │ │ │ └── exit_test.go │ │ ├── multierror │ │ │ ├── multierror.go │ │ │ └── multierror_test.go │ │ └── readme │ │ │ └── readme.go │ │ ├── level.go │ │ ├── level_test.go │ │ ├── logger.go │ │ ├── logger_bench_test.go │ │ ├── logger_test.go │ │ ├── options.go │ │ ├── stacktrace.go │ │ ├── stacktrace_test.go │ │ ├── sugar.go │ │ ├── sugar_test.go │ │ ├── time.go │ │ ├── time_test.go │ │ ├── writer.go │ │ ├── writer_test.go │ │ ├── zapcore │ │ ├── console_encoder.go │ │ ├── console_encoder_bench_test.go │ │ ├── core.go │ │ ├── core_test.go │ │ ├── doc.go │ │ ├── encoder.go │ │ ├── encoder_test.go │ │ ├── entry.go │ │ ├── entry_test.go │ │ ├── field.go │ │ ├── field_test.go │ │ ├── hook.go │ │ ├── hook_test.go │ │ ├── json_encoder.go │ │ ├── json_encoder_bench_test.go │ │ ├── json_encoder_impl_test.go │ │ ├── level.go │ │ ├── level_strings.go │ │ ├── level_strings_test.go │ │ ├── level_test.go │ │ ├── marshaler.go │ │ ├── memory_encoder.go │ │ ├── memory_encoder_test.go │ │ ├── sampler.go │ │ ├── sampler_bench_test.go │ │ ├── sampler_test.go │ │ ├── tee.go │ │ ├── tee_logger_bench_test.go │ │ ├── tee_test.go │ │ ├── write_syncer.go │ │ ├── write_syncer_bench_test.go │ │ └── write_syncer_test.go │ │ ├── zapgrpc │ │ ├── zapgrpc.go │ │ └── zapgrpc_test.go │ │ └── zaptest │ │ ├── observer │ │ ├── observer.go │ │ └── observer_test.go │ │ ├── timeout.go │ │ └── writer.go │ ├── golang.org │ └── x │ │ └── net │ │ ├── .gitattributes │ │ ├── .gitignore │ │ ├── AUTHORS │ │ ├── CONTRIBUTING.md │ │ ├── CONTRIBUTORS │ │ ├── LICENSE │ │ ├── PATENTS │ │ ├── README │ │ ├── bpf │ │ ├── asm.go │ │ ├── constants.go │ │ ├── doc.go │ │ ├── instructions.go │ │ ├── instructions_test.go │ │ ├── testdata │ │ │ ├── all_instructions.bpf │ │ │ └── all_instructions.txt │ │ ├── vm.go │ │ ├── vm_aluop_test.go │ │ ├── vm_bpf_test.go │ │ ├── vm_extension_test.go │ │ ├── vm_instructions.go │ │ ├── vm_jump_test.go │ │ ├── vm_load_test.go │ │ ├── vm_ret_test.go │ │ ├── vm_scratch_test.go │ │ └── vm_test.go │ │ ├── codereview.cfg │ │ ├── context │ │ ├── context.go │ │ ├── context_test.go │ │ ├── ctxhttp │ │ │ ├── ctxhttp.go │ │ │ ├── ctxhttp_17_test.go │ │ │ ├── ctxhttp_pre17.go │ │ │ ├── ctxhttp_pre17_test.go │ │ │ └── ctxhttp_test.go │ │ ├── go17.go │ │ ├── pre_go17.go │ │ └── withtimeout_test.go │ │ ├── dict │ │ └── dict.go │ │ ├── dns │ │ └── dnsmessage │ │ │ ├── message.go │ │ │ └── message_test.go │ │ ├── html │ │ ├── atom │ │ │ ├── atom.go │ │ │ ├── atom_test.go │ │ │ ├── gen.go │ │ │ ├── table.go │ │ │ └── table_test.go │ │ ├── charset │ │ │ ├── charset.go │ │ │ ├── charset_test.go │ │ │ └── testdata │ │ │ │ ├── HTTP-charset.html │ │ │ │ ├── HTTP-vs-UTF-8-BOM.html │ │ │ │ ├── HTTP-vs-meta-charset.html │ │ │ │ ├── HTTP-vs-meta-content.html │ │ │ │ ├── No-encoding-declaration.html │ │ │ │ ├── README │ │ │ │ ├── UTF-16BE-BOM.html │ │ │ │ ├── UTF-16LE-BOM.html │ │ │ │ ├── UTF-8-BOM-vs-meta-charset.html │ │ │ │ ├── UTF-8-BOM-vs-meta-content.html │ │ │ │ ├── meta-charset-attribute.html │ │ │ │ └── meta-content-attribute.html │ │ ├── const.go │ │ ├── doc.go │ │ ├── doctype.go │ │ ├── entity.go │ │ ├── entity_test.go │ │ ├── escape.go │ │ ├── escape_test.go │ │ ├── example_test.go │ │ ├── foreign.go │ │ ├── node.go │ │ ├── node_test.go │ │ ├── parse.go │ │ ├── parse_test.go │ │ ├── render.go │ │ ├── render_test.go │ │ ├── testdata │ │ │ ├── go1.html │ │ │ └── webkit │ │ │ │ ├── README │ │ │ │ ├── adoption01.dat │ │ │ │ ├── adoption02.dat │ │ │ │ ├── comments01.dat │ │ │ │ ├── doctype01.dat │ │ │ │ ├── entities01.dat │ │ │ │ ├── entities02.dat │ │ │ │ ├── html5test-com.dat │ │ │ │ ├── inbody01.dat │ │ │ │ ├── isindex.dat │ │ │ │ ├── pending-spec-changes-plain-text-unsafe.dat │ │ │ │ ├── pending-spec-changes.dat │ │ │ │ ├── plain-text-unsafe.dat │ │ │ │ ├── scriptdata01.dat │ │ │ │ ├── scripted │ │ │ │ ├── adoption01.dat │ │ │ │ └── webkit01.dat │ │ │ │ ├── tables01.dat │ │ │ │ ├── tests1.dat │ │ │ │ ├── tests10.dat │ │ │ │ ├── tests11.dat │ │ │ │ ├── tests12.dat │ │ │ │ ├── tests14.dat │ │ │ │ ├── tests15.dat │ │ │ │ ├── tests16.dat │ │ │ │ ├── tests17.dat │ │ │ │ ├── tests18.dat │ │ │ │ ├── tests19.dat │ │ │ │ ├── tests2.dat │ │ │ │ ├── tests20.dat │ │ │ │ ├── tests21.dat │ │ │ │ ├── tests22.dat │ │ │ │ ├── tests23.dat │ │ │ │ ├── tests24.dat │ │ │ │ ├── tests25.dat │ │ │ │ ├── tests26.dat │ │ │ │ ├── tests3.dat │ │ │ │ ├── tests4.dat │ │ │ │ ├── tests5.dat │ │ │ │ ├── tests6.dat │ │ │ │ ├── tests7.dat │ │ │ │ ├── tests8.dat │ │ │ │ ├── tests9.dat │ │ │ │ ├── tests_innerHTML_1.dat │ │ │ │ ├── tricky01.dat │ │ │ │ ├── webkit01.dat │ │ │ │ └── webkit02.dat │ │ ├── token.go │ │ └── token_test.go │ │ ├── http2 │ │ ├── .gitignore │ │ ├── Dockerfile │ │ ├── Makefile │ │ ├── README │ │ ├── ciphers.go │ │ ├── ciphers_test.go │ │ ├── client_conn_pool.go │ │ ├── configure_transport.go │ │ ├── databuffer.go │ │ ├── databuffer_test.go │ │ ├── errors.go │ │ ├── errors_test.go │ │ ├── flow.go │ │ ├── flow_test.go │ │ ├── frame.go │ │ ├── frame_test.go │ │ ├── go16.go │ │ ├── go17.go │ │ ├── go17_not18.go │ │ ├── go18.go │ │ ├── go18_test.go │ │ ├── go19.go │ │ ├── go19_test.go │ │ ├── gotrack.go │ │ ├── gotrack_test.go │ │ ├── h2demo │ │ │ ├── .gitignore │ │ │ ├── Makefile │ │ │ ├── README │ │ │ ├── h2demo.go │ │ │ ├── launch.go │ │ │ ├── rootCA.key │ │ │ ├── rootCA.pem │ │ │ ├── rootCA.srl │ │ │ ├── server.crt │ │ │ ├── server.key │ │ │ └── tmpl.go │ │ ├── h2i │ │ │ ├── README.md │ │ │ └── h2i.go │ │ ├── headermap.go │ │ ├── hpack │ │ │ ├── encode.go │ │ │ ├── encode_test.go │ │ │ ├── hpack.go │ │ │ ├── hpack_test.go │ │ │ ├── huffman.go │ │ │ ├── tables.go │ │ │ └── tables_test.go │ │ ├── http2.go │ │ ├── http2_test.go │ │ ├── not_go16.go │ │ ├── not_go17.go │ │ ├── not_go18.go │ │ ├── not_go19.go │ │ ├── pipe.go │ │ ├── pipe_test.go │ │ ├── server.go │ │ ├── server_push_test.go │ │ ├── server_test.go │ │ ├── testdata │ │ │ └── draft-ietf-httpbis-http2.xml │ │ ├── transport.go │ │ ├── transport_test.go │ │ ├── write.go │ │ ├── writesched.go │ │ ├── writesched_priority.go │ │ ├── writesched_priority_test.go │ │ ├── writesched_random.go │ │ ├── writesched_random_test.go │ │ ├── writesched_test.go │ │ └── z_spec_test.go │ │ ├── icmp │ │ ├── dstunreach.go │ │ ├── echo.go │ │ ├── endpoint.go │ │ ├── example_test.go │ │ ├── extension.go │ │ ├── extension_test.go │ │ ├── helper.go │ │ ├── helper_posix.go │ │ ├── interface.go │ │ ├── ipv4.go │ │ ├── ipv4_test.go │ │ ├── ipv6.go │ │ ├── listen_posix.go │ │ ├── listen_stub.go │ │ ├── message.go │ │ ├── message_test.go │ │ ├── messagebody.go │ │ ├── mpls.go │ │ ├── multipart.go │ │ ├── multipart_test.go │ │ ├── packettoobig.go │ │ ├── paramprob.go │ │ ├── ping_test.go │ │ ├── sys_freebsd.go │ │ └── timeexceeded.go │ │ ├── idna │ │ ├── example_test.go │ │ ├── idna.go │ │ ├── idna_test.go │ │ ├── punycode.go │ │ ├── punycode_test.go │ │ ├── tables.go │ │ ├── trie.go │ │ └── trieval.go │ │ ├── internal │ │ ├── iana │ │ │ ├── const.go │ │ │ └── gen.go │ │ ├── nettest │ │ │ ├── helper_bsd.go │ │ │ ├── helper_nobsd.go │ │ │ ├── helper_posix.go │ │ │ ├── helper_stub.go │ │ │ ├── helper_unix.go │ │ │ ├── helper_windows.go │ │ │ ├── interface.go │ │ │ ├── rlimit.go │ │ │ └── stack.go │ │ ├── socket │ │ │ ├── cmsghdr.go │ │ │ ├── cmsghdr_bsd.go │ │ │ ├── cmsghdr_linux_32bit.go │ │ │ ├── cmsghdr_linux_64bit.go │ │ │ ├── cmsghdr_solaris_64bit.go │ │ │ ├── cmsghdr_stub.go │ │ │ ├── defs_darwin.go │ │ │ ├── defs_dragonfly.go │ │ │ ├── defs_freebsd.go │ │ │ ├── defs_linux.go │ │ │ ├── defs_netbsd.go │ │ │ ├── defs_openbsd.go │ │ │ ├── defs_solaris.go │ │ │ ├── error_unix.go │ │ │ ├── error_windows.go │ │ │ ├── iovec_32bit.go │ │ │ ├── iovec_64bit.go │ │ │ ├── iovec_solaris_64bit.go │ │ │ ├── iovec_stub.go │ │ │ ├── mmsghdr_stub.go │ │ │ ├── mmsghdr_unix.go │ │ │ ├── msghdr_bsd.go │ │ │ ├── msghdr_bsdvar.go │ │ │ ├── msghdr_linux.go │ │ │ ├── msghdr_linux_32bit.go │ │ │ ├── msghdr_linux_64bit.go │ │ │ ├── msghdr_openbsd.go │ │ │ ├── msghdr_solaris_64bit.go │ │ │ ├── msghdr_stub.go │ │ │ ├── rawconn.go │ │ │ ├── rawconn_mmsg.go │ │ │ ├── rawconn_msg.go │ │ │ ├── rawconn_nommsg.go │ │ │ ├── rawconn_nomsg.go │ │ │ ├── rawconn_stub.go │ │ │ ├── reflect.go │ │ │ ├── socket.go │ │ │ ├── socket_go1_9_test.go │ │ │ ├── socket_test.go │ │ │ ├── sys.go │ │ │ ├── sys_bsd.go │ │ │ ├── sys_bsdvar.go │ │ │ ├── sys_darwin.go │ │ │ ├── sys_dragonfly.go │ │ │ ├── sys_freebsd.go │ │ │ ├── sys_linux.go │ │ │ ├── sys_linux_386.go │ │ │ ├── sys_linux_386.s │ │ │ ├── sys_linux_amd64.go │ │ │ ├── sys_linux_arm.go │ │ │ ├── sys_linux_arm64.go │ │ │ ├── sys_linux_mips.go │ │ │ ├── sys_linux_mips64.go │ │ │ ├── sys_linux_mips64le.go │ │ │ ├── sys_linux_mipsle.go │ │ │ ├── sys_linux_ppc64.go │ │ │ ├── sys_linux_ppc64le.go │ │ │ ├── sys_linux_s390x.go │ │ │ ├── sys_linux_s390x.s │ │ │ ├── sys_netbsd.go │ │ │ ├── sys_posix.go │ │ │ ├── sys_solaris.go │ │ │ ├── sys_solaris_amd64.s │ │ │ ├── sys_stub.go │ │ │ ├── sys_unix.go │ │ │ ├── sys_windows.go │ │ │ ├── zsys_darwin_386.go │ │ │ ├── zsys_darwin_amd64.go │ │ │ ├── zsys_darwin_arm.go │ │ │ ├── zsys_dragonfly_amd64.go │ │ │ ├── zsys_freebsd_386.go │ │ │ ├── zsys_freebsd_amd64.go │ │ │ ├── zsys_freebsd_arm.go │ │ │ ├── zsys_linux_386.go │ │ │ ├── zsys_linux_amd64.go │ │ │ ├── zsys_linux_arm.go │ │ │ ├── zsys_linux_arm64.go │ │ │ ├── zsys_linux_mips.go │ │ │ ├── zsys_linux_mips64.go │ │ │ ├── zsys_linux_mips64le.go │ │ │ ├── zsys_linux_mipsle.go │ │ │ ├── zsys_linux_ppc64.go │ │ │ ├── zsys_linux_ppc64le.go │ │ │ ├── zsys_linux_s390x.go │ │ │ ├── zsys_netbsd_386.go │ │ │ ├── zsys_netbsd_amd64.go │ │ │ ├── zsys_netbsd_arm.go │ │ │ ├── zsys_openbsd_386.go │ │ │ ├── zsys_openbsd_amd64.go │ │ │ ├── zsys_openbsd_arm.go │ │ │ └── zsys_solaris_amd64.go │ │ └── timeseries │ │ │ ├── timeseries.go │ │ │ └── timeseries_test.go │ │ ├── ipv4 │ │ ├── batch.go │ │ ├── bpf_test.go │ │ ├── control.go │ │ ├── control_bsd.go │ │ ├── control_pktinfo.go │ │ ├── control_stub.go │ │ ├── control_unix.go │ │ ├── control_windows.go │ │ ├── defs_darwin.go │ │ ├── defs_dragonfly.go │ │ ├── defs_freebsd.go │ │ ├── defs_linux.go │ │ ├── defs_netbsd.go │ │ ├── defs_openbsd.go │ │ ├── defs_solaris.go │ │ ├── dgramopt.go │ │ ├── doc.go │ │ ├── endpoint.go │ │ ├── example_test.go │ │ ├── gen.go │ │ ├── genericopt.go │ │ ├── header.go │ │ ├── header_test.go │ │ ├── helper.go │ │ ├── iana.go │ │ ├── icmp.go │ │ ├── icmp_linux.go │ │ ├── icmp_stub.go │ │ ├── icmp_test.go │ │ ├── multicast_test.go │ │ ├── multicastlistener_test.go │ │ ├── multicastsockopt_test.go │ │ ├── packet.go │ │ ├── packet_go1_8.go │ │ ├── packet_go1_9.go │ │ ├── payload.go │ │ ├── payload_cmsg.go │ │ ├── payload_cmsg_go1_8.go │ │ ├── payload_cmsg_go1_9.go │ │ ├── payload_nocmsg.go │ │ ├── readwrite_go1_8_test.go │ │ ├── readwrite_go1_9_test.go │ │ ├── readwrite_test.go │ │ ├── sockopt.go │ │ ├── sockopt_posix.go │ │ ├── sockopt_stub.go │ │ ├── sys_asmreq.go │ │ ├── sys_asmreq_stub.go │ │ ├── sys_asmreqn.go │ │ ├── sys_asmreqn_stub.go │ │ ├── sys_bpf.go │ │ ├── sys_bpf_stub.go │ │ ├── sys_bsd.go │ │ ├── sys_darwin.go │ │ ├── sys_dragonfly.go │ │ ├── sys_freebsd.go │ │ ├── sys_linux.go │ │ ├── sys_solaris.go │ │ ├── sys_ssmreq.go │ │ ├── sys_ssmreq_stub.go │ │ ├── sys_stub.go │ │ ├── sys_windows.go │ │ ├── unicast_test.go │ │ ├── unicastsockopt_test.go │ │ ├── zsys_darwin.go │ │ ├── zsys_dragonfly.go │ │ ├── zsys_freebsd_386.go │ │ ├── zsys_freebsd_amd64.go │ │ ├── zsys_freebsd_arm.go │ │ ├── zsys_linux_386.go │ │ ├── zsys_linux_amd64.go │ │ ├── zsys_linux_arm.go │ │ ├── zsys_linux_arm64.go │ │ ├── zsys_linux_mips.go │ │ ├── zsys_linux_mips64.go │ │ ├── zsys_linux_mips64le.go │ │ ├── zsys_linux_mipsle.go │ │ ├── zsys_linux_ppc.go │ │ ├── zsys_linux_ppc64.go │ │ ├── zsys_linux_ppc64le.go │ │ ├── zsys_linux_s390x.go │ │ ├── zsys_netbsd.go │ │ ├── zsys_openbsd.go │ │ └── zsys_solaris.go │ │ ├── ipv6 │ │ ├── batch.go │ │ ├── bpf_test.go │ │ ├── control.go │ │ ├── control_rfc2292_unix.go │ │ ├── control_rfc3542_unix.go │ │ ├── control_stub.go │ │ ├── control_unix.go │ │ ├── control_windows.go │ │ ├── defs_darwin.go │ │ ├── defs_dragonfly.go │ │ ├── defs_freebsd.go │ │ ├── defs_linux.go │ │ ├── defs_netbsd.go │ │ ├── defs_openbsd.go │ │ ├── defs_solaris.go │ │ ├── dgramopt.go │ │ ├── doc.go │ │ ├── endpoint.go │ │ ├── example_test.go │ │ ├── gen.go │ │ ├── genericopt.go │ │ ├── header.go │ │ ├── header_test.go │ │ ├── helper.go │ │ ├── iana.go │ │ ├── icmp.go │ │ ├── icmp_bsd.go │ │ ├── icmp_linux.go │ │ ├── icmp_solaris.go │ │ ├── icmp_stub.go │ │ ├── icmp_test.go │ │ ├── icmp_windows.go │ │ ├── mocktransponder_test.go │ │ ├── multicast_test.go │ │ ├── multicastlistener_test.go │ │ ├── multicastsockopt_test.go │ │ ├── payload.go │ │ ├── payload_cmsg.go │ │ ├── payload_cmsg_go1_8.go │ │ ├── payload_cmsg_go1_9.go │ │ ├── payload_nocmsg.go │ │ ├── readwrite_go1_8_test.go │ │ ├── readwrite_go1_9_test.go │ │ ├── readwrite_test.go │ │ ├── sockopt.go │ │ ├── sockopt_posix.go │ │ ├── sockopt_stub.go │ │ ├── sockopt_test.go │ │ ├── sys_asmreq.go │ │ ├── sys_asmreq_stub.go │ │ ├── sys_bpf.go │ │ ├── sys_bpf_stub.go │ │ ├── sys_bsd.go │ │ ├── sys_darwin.go │ │ ├── sys_freebsd.go │ │ ├── sys_linux.go │ │ ├── sys_solaris.go │ │ ├── sys_ssmreq.go │ │ ├── sys_ssmreq_stub.go │ │ ├── sys_stub.go │ │ ├── sys_windows.go │ │ ├── unicast_test.go │ │ ├── unicastsockopt_test.go │ │ ├── zsys_darwin.go │ │ ├── zsys_dragonfly.go │ │ ├── zsys_freebsd_386.go │ │ ├── zsys_freebsd_amd64.go │ │ ├── zsys_freebsd_arm.go │ │ ├── zsys_linux_386.go │ │ ├── zsys_linux_amd64.go │ │ ├── zsys_linux_arm.go │ │ ├── zsys_linux_arm64.go │ │ ├── zsys_linux_mips.go │ │ ├── zsys_linux_mips64.go │ │ ├── zsys_linux_mips64le.go │ │ ├── zsys_linux_mipsle.go │ │ ├── zsys_linux_ppc.go │ │ ├── zsys_linux_ppc64.go │ │ ├── zsys_linux_ppc64le.go │ │ ├── zsys_linux_s390x.go │ │ ├── zsys_netbsd.go │ │ ├── zsys_openbsd.go │ │ └── zsys_solaris.go │ │ ├── lex │ │ └── httplex │ │ │ ├── httplex.go │ │ │ └── httplex_test.go │ │ ├── lif │ │ ├── address.go │ │ ├── address_test.go │ │ ├── binary.go │ │ ├── defs_solaris.go │ │ ├── lif.go │ │ ├── link.go │ │ ├── link_test.go │ │ ├── sys.go │ │ ├── sys_solaris_amd64.s │ │ ├── syscall.go │ │ └── zsys_solaris_amd64.go │ │ ├── nettest │ │ ├── conntest.go │ │ ├── conntest_go16.go │ │ ├── conntest_go17.go │ │ └── conntest_test.go │ │ ├── netutil │ │ ├── listen.go │ │ └── listen_test.go │ │ ├── proxy │ │ ├── direct.go │ │ ├── per_host.go │ │ ├── per_host_test.go │ │ ├── proxy.go │ │ ├── proxy_test.go │ │ └── socks5.go │ │ ├── publicsuffix │ │ ├── gen.go │ │ ├── list.go │ │ ├── list_test.go │ │ ├── table.go │ │ └── table_test.go │ │ ├── route │ │ ├── address.go │ │ ├── address_darwin_test.go │ │ ├── address_test.go │ │ ├── binary.go │ │ ├── defs_darwin.go │ │ ├── defs_dragonfly.go │ │ ├── defs_freebsd.go │ │ ├── defs_netbsd.go │ │ ├── defs_openbsd.go │ │ ├── interface.go │ │ ├── interface_announce.go │ │ ├── interface_classic.go │ │ ├── interface_freebsd.go │ │ ├── interface_multicast.go │ │ ├── interface_openbsd.go │ │ ├── message.go │ │ ├── message_darwin_test.go │ │ ├── message_freebsd_test.go │ │ ├── message_test.go │ │ ├── route.go │ │ ├── route_classic.go │ │ ├── route_openbsd.go │ │ ├── route_test.go │ │ ├── sys.go │ │ ├── sys_darwin.go │ │ ├── sys_dragonfly.go │ │ ├── sys_freebsd.go │ │ ├── sys_netbsd.go │ │ ├── sys_openbsd.go │ │ ├── syscall.go │ │ ├── zsys_darwin.go │ │ ├── zsys_dragonfly.go │ │ ├── zsys_freebsd_386.go │ │ ├── zsys_freebsd_amd64.go │ │ ├── zsys_freebsd_arm.go │ │ ├── zsys_netbsd.go │ │ └── zsys_openbsd.go │ │ ├── trace │ │ ├── events.go │ │ ├── histogram.go │ │ ├── histogram_test.go │ │ ├── trace.go │ │ ├── trace_go16.go │ │ ├── trace_go17.go │ │ └── trace_test.go │ │ ├── webdav │ │ ├── file.go │ │ ├── file_go1.6.go │ │ ├── file_go1.7.go │ │ ├── file_test.go │ │ ├── if.go │ │ ├── if_test.go │ │ ├── internal │ │ │ └── xml │ │ │ │ ├── README │ │ │ │ ├── atom_test.go │ │ │ │ ├── example_test.go │ │ │ │ ├── marshal.go │ │ │ │ ├── marshal_test.go │ │ │ │ ├── read.go │ │ │ │ ├── read_test.go │ │ │ │ ├── typeinfo.go │ │ │ │ ├── xml.go │ │ │ │ └── xml_test.go │ │ ├── litmus_test_server.go │ │ ├── lock.go │ │ ├── lock_test.go │ │ ├── prop.go │ │ ├── prop_test.go │ │ ├── webdav.go │ │ ├── webdav_test.go │ │ ├── xml.go │ │ └── xml_test.go │ │ ├── websocket │ │ ├── client.go │ │ ├── dial.go │ │ ├── dial_test.go │ │ ├── exampledial_test.go │ │ ├── examplehandler_test.go │ │ ├── hybi.go │ │ ├── hybi_test.go │ │ ├── server.go │ │ ├── websocket.go │ │ └── websocket_test.go │ │ └── xsrftoken │ │ ├── xsrf.go │ │ └── xsrf_test.go │ └── gopkg.in │ └── square │ ├── go-jose.v1 │ ├── .gitcookies.sh.enc │ ├── .gitignore │ ├── .travis.yml │ ├── BUG-BOUNTY.md │ ├── CONTRIBUTING.md │ ├── LICENSE │ ├── README.md │ ├── asymmetric.go │ ├── asymmetric_test.go │ ├── cipher │ │ ├── cbc_hmac.go │ │ ├── cbc_hmac_test.go │ │ ├── concat_kdf.go │ │ ├── concat_kdf_test.go │ │ ├── ecdh_es.go │ │ ├── ecdh_es_test.go │ │ ├── key_wrap.go │ │ └── key_wrap_test.go │ ├── crypter.go │ ├── crypter_test.go │ ├── doc.go │ ├── doc_test.go │ ├── encoding.go │ ├── encoding_test.go │ ├── jose-util │ │ ├── README.md │ │ ├── ec.key │ │ ├── ec.pub │ │ ├── jose-util.t │ │ ├── main.go │ │ ├── test-keys │ │ │ ├── ecdh.key │ │ │ ├── ecdh.pub │ │ │ ├── rsa.key │ │ │ └── rsa.pub │ │ └── utils.go │ ├── json │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bench_test.go │ │ ├── decode.go │ │ ├── decode_test.go │ │ ├── encode.go │ │ ├── encode_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 │ │ └── testdata │ │ │ └── code.json.gz │ ├── jwe.go │ ├── jwe_test.go │ ├── jwk.go │ ├── jwk_test.go │ ├── jws.go │ ├── jws_test.go │ ├── jwt │ │ ├── builder.go │ │ ├── builder_test.go │ │ ├── claims.go │ │ ├── claims_test.go │ │ ├── errors.go │ │ ├── example_test.go │ │ ├── jwt.go │ │ ├── jwt_test.go │ │ ├── validation.go │ │ └── validation_test.go │ ├── shared.go │ ├── signing.go │ ├── signing_test.go │ ├── symmetric.go │ ├── symmetric_test.go │ └── utils_test.go │ └── go-jose.v2 │ ├── .gitcookies.sh.enc │ ├── .gitignore │ ├── .travis.yml │ ├── BUG-BOUNTY.md │ ├── CONTRIBUTING.md │ ├── LICENSE │ ├── README.md │ ├── asymmetric.go │ ├── asymmetric_test.go │ ├── cipher │ ├── cbc_hmac.go │ ├── cbc_hmac_test.go │ ├── concat_kdf.go │ ├── concat_kdf_test.go │ ├── ecdh_es.go │ ├── ecdh_es_test.go │ ├── key_wrap.go │ └── key_wrap_test.go │ ├── crypter.go │ ├── crypter_test.go │ ├── doc.go │ ├── doc_test.go │ ├── encoding.go │ ├── encoding_test.go │ ├── jose-util │ ├── README.md │ ├── ec.key │ ├── ec.pub │ ├── jose-util.t │ ├── main.go │ ├── test-keys │ │ ├── ecdh.key │ │ ├── ecdh.pub │ │ ├── rsa.key │ │ └── rsa.pub │ └── utils.go │ ├── json │ ├── LICENSE │ ├── README.md │ ├── bench_test.go │ ├── decode.go │ ├── decode_test.go │ ├── encode.go │ ├── encode_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 │ └── testdata │ │ └── code.json.gz │ ├── jwe.go │ ├── jwe_test.go │ ├── jwk.go │ ├── jwk_test.go │ ├── jws.go │ ├── jws_test.go │ ├── jwt │ ├── builder.go │ ├── builder_test.go │ ├── claims.go │ ├── claims_test.go │ ├── errors.go │ ├── example_test.go │ ├── jwt.go │ ├── jwt_test.go │ ├── validation.go │ └── validation_test.go │ ├── shared.go │ ├── signing.go │ ├── signing_test.go │ ├── symmetric.go │ ├── symmetric_test.go │ └── utils_test.go ├── apiary.apib ├── circle.yml ├── doc └── project-report.gif └── web ├── .env ├── .env.production ├── .flowconfig ├── .gitignore ├── Makefile ├── flow-typed └── npm │ ├── auth0-lock_vx.x.x.js │ ├── flow-bin_v0.x.x.js │ ├── material-ui-chip-input_vx.x.x.js │ ├── material-ui_vx.x.x.js │ ├── moment_v2.x.x.js │ ├── react-redux_v5.x.x.js │ ├── react-router-dom_v4.x.x.js │ ├── react-router_v4.x.x.js │ ├── react-scripts_vx.x.x.js │ ├── react-tap-event-plugin_vx.x.x.js │ ├── redux-api-middleware_vx.x.x.js │ ├── redux-thunk_vx.x.x.js │ ├── redux_v3.x.x.js │ └── roboto-fontface_vx.x.x.js ├── package.json ├── public ├── favicon.ico ├── index.html └── manifest.json ├── src ├── App │ ├── __tests__ │ │ └── presenter.js │ ├── index.css │ ├── index.js │ └── presenter.js ├── Auth │ ├── __tests__ │ │ ├── presenter.js │ │ └── reducer.js │ ├── index.css │ ├── index.js │ ├── presenter.js │ └── reducer.js ├── Common │ ├── ChallengeConfirmationDialog.js │ ├── ClipboardInput.js │ ├── Loading.js │ ├── Report │ │ ├── Form.js │ │ ├── Summary.js │ │ ├── TagReport.js │ │ ├── form.css │ │ ├── index.css │ │ ├── index.js │ │ ├── summary.css │ │ └── utils.js │ └── style.css ├── Errors │ ├── __tests__ │ │ ├── presenter.js │ │ └── reducer.js │ ├── index.js │ ├── presenter.js │ └── reducer.js ├── Home │ ├── NotConnected.js │ ├── __tests__ │ │ ├── NotConnected.js │ │ └── presenter.js │ ├── img │ │ ├── crick_bg.jpg │ │ └── logo-crick.png │ ├── index.css │ ├── index.js │ └── presenter.js ├── ProjectReport │ ├── index.css │ ├── index.js │ ├── presenter.js │ └── reducer.js ├── Projects │ └── reducer.js ├── ProjectsList │ ├── Empty.js │ ├── Project.js │ ├── index.css │ ├── index.js │ └── presenter.js ├── Routing │ ├── NotFound.js │ ├── PrivateRoute.js │ └── style.css ├── TeamReport │ ├── index.css │ ├── index.js │ ├── presenter.js │ └── reducer.js ├── Teams │ ├── Empty.js │ ├── Form.js │ ├── List.js │ ├── index.css │ ├── index.js │ ├── presenter.js │ └── reducer.js ├── TeamsList │ ├── Team.js │ ├── index.css │ ├── index.js │ └── presenter.js ├── __tests__ │ └── utils.js ├── index.css ├── index.js ├── middleware │ ├── apiAuthToken.js │ └── apiError.js ├── registerServiceWorker.js ├── setupTests.js ├── shared │ └── emptyStyle.js ├── store │ ├── configureStore.js │ └── rootReducer.js ├── types.js └── utils.js └── yarn.lock /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/README.md -------------------------------------------------------------------------------- /api/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/.dockerignore -------------------------------------------------------------------------------- /api/.gitignore: -------------------------------------------------------------------------------- 1 | /gin-bin 2 | -------------------------------------------------------------------------------- /api/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/Dockerfile -------------------------------------------------------------------------------- /api/Gopkg.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/Gopkg.lock -------------------------------------------------------------------------------- /api/Gopkg.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/Gopkg.toml -------------------------------------------------------------------------------- /api/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/Makefile -------------------------------------------------------------------------------- /api/config/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/config/config.go -------------------------------------------------------------------------------- /api/docker-compose.tools.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/docker-compose.tools.yml -------------------------------------------------------------------------------- /api/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/docker-compose.yml -------------------------------------------------------------------------------- /api/handlers/frames.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/handlers/frames.go -------------------------------------------------------------------------------- /api/handlers/frames_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/handlers/frames_test.go -------------------------------------------------------------------------------- /api/handlers/handlers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/handlers/handlers.go -------------------------------------------------------------------------------- /api/handlers/handlers_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/handlers/handlers_test.go -------------------------------------------------------------------------------- /api/handlers/projects.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/handlers/projects.go -------------------------------------------------------------------------------- /api/handlers/projects_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/handlers/projects_test.go -------------------------------------------------------------------------------- /api/handlers/teams.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/handlers/teams.go -------------------------------------------------------------------------------- /api/handlers/teams_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/handlers/teams_test.go -------------------------------------------------------------------------------- /api/handlers/users.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/handlers/users.go -------------------------------------------------------------------------------- /api/handlers/users_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/handlers/users_test.go -------------------------------------------------------------------------------- /api/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/main.go -------------------------------------------------------------------------------- /api/middleware/auth.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/middleware/auth.go -------------------------------------------------------------------------------- /api/middleware/middleware.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/middleware/middleware.go -------------------------------------------------------------------------------- /api/migrations/00001_create_users_table.up.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/migrations/00001_create_users_table.up.sql -------------------------------------------------------------------------------- /api/migrations/00003_drop_extension_uuid.up.sql: -------------------------------------------------------------------------------- 1 | /* we actually do not use it... */ 2 | DROP EXTENSION "uuid-ossp"; 3 | -------------------------------------------------------------------------------- /api/migrations/00004_create_projects_table.up.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/migrations/00004_create_projects_table.up.sql -------------------------------------------------------------------------------- /api/migrations/00006_add_synchronized_at_field_to_frames.up.sql: -------------------------------------------------------------------------------- 1 | ALTER TABLE frames ADD COLUMN synchronized_at timestamp WITHOUT TIME ZONE; 2 | -------------------------------------------------------------------------------- /api/migrations/00007_add_watson_token_to_users.up.sql: -------------------------------------------------------------------------------- 1 | ALTER TABLE users ADD COLUMN watson_token text; 2 | -------------------------------------------------------------------------------- /api/migrations/00008_add_tags_column_to_frames.up.sql: -------------------------------------------------------------------------------- 1 | ALTER TABLE frames ADD COLUMN tags text[]; 2 | -------------------------------------------------------------------------------- /api/migrations/00012_create_table_teams.up.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/migrations/00012_create_table_teams.up.sql -------------------------------------------------------------------------------- /api/migrations/00013_add_not_null_constraints.up.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/migrations/00013_add_not_null_constraints.up.sql -------------------------------------------------------------------------------- /api/migrations/00014_add_avatar_url_to_users.up.sql: -------------------------------------------------------------------------------- 1 | ALTER TABLE users ADD COLUMN avatar_url text; 2 | -------------------------------------------------------------------------------- /api/migrations/00016_add_unique_constraint_to_teams.up.sql: -------------------------------------------------------------------------------- 1 | ALTER TABLE teams ADD CONSTRAINT unique_name_for_user UNIQUE (name, owner_id); 2 | -------------------------------------------------------------------------------- /api/migrations/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/migrations/Dockerfile -------------------------------------------------------------------------------- /api/models/frames.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/models/frames.go -------------------------------------------------------------------------------- /api/models/models.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/models/models.go -------------------------------------------------------------------------------- /api/models/projects.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/models/projects.go -------------------------------------------------------------------------------- /api/models/sql.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/models/sql.go -------------------------------------------------------------------------------- /api/models/sql_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/models/sql_test.go -------------------------------------------------------------------------------- /api/models/teams.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/models/teams.go -------------------------------------------------------------------------------- /api/models/users.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/models/users.go -------------------------------------------------------------------------------- /api/models/users_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/models/users_test.go -------------------------------------------------------------------------------- /api/models/workloads.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/models/workloads.go -------------------------------------------------------------------------------- /api/scripts/watson_push.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/scripts/watson_push.py -------------------------------------------------------------------------------- /api/vendor/github.com/NYTimes/gziphandler/.gitignore: -------------------------------------------------------------------------------- 1 | *.swp 2 | -------------------------------------------------------------------------------- /api/vendor/github.com/NYTimes/gziphandler/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/github.com/NYTimes/gziphandler/.travis.yml -------------------------------------------------------------------------------- /api/vendor/github.com/NYTimes/gziphandler/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/github.com/NYTimes/gziphandler/LICENSE.md -------------------------------------------------------------------------------- /api/vendor/github.com/NYTimes/gziphandler/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/github.com/NYTimes/gziphandler/README.md -------------------------------------------------------------------------------- /api/vendor/github.com/NYTimes/gziphandler/gzip.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/github.com/NYTimes/gziphandler/gzip.go -------------------------------------------------------------------------------- /api/vendor/github.com/auth0-community/go-auth0/middlewares/gin/auth_group.go: -------------------------------------------------------------------------------- 1 | package gin 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /api/vendor/github.com/coreos/go-systemd/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/github.com/coreos/go-systemd/.travis.yml -------------------------------------------------------------------------------- /api/vendor/github.com/coreos/go-systemd/DCO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/github.com/coreos/go-systemd/DCO -------------------------------------------------------------------------------- /api/vendor/github.com/coreos/go-systemd/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/github.com/coreos/go-systemd/LICENSE -------------------------------------------------------------------------------- /api/vendor/github.com/coreos/go-systemd/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/github.com/coreos/go-systemd/README.md -------------------------------------------------------------------------------- /api/vendor/github.com/coreos/go-systemd/dbus/dbus.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/github.com/coreos/go-systemd/dbus/dbus.go -------------------------------------------------------------------------------- /api/vendor/github.com/coreos/go-systemd/dbus/set.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/github.com/coreos/go-systemd/dbus/set.go -------------------------------------------------------------------------------- /api/vendor/github.com/coreos/go-systemd/fixtures/start-stop.service: -------------------------------------------------------------------------------- 1 | [Unit] 2 | Description=start stop test 3 | 4 | [Service] 5 | ExecStart=/bin/sleep 400 6 | -------------------------------------------------------------------------------- /api/vendor/github.com/coreos/go-systemd/test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/github.com/coreos/go-systemd/test -------------------------------------------------------------------------------- /api/vendor/github.com/coreos/go-systemd/util/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/github.com/coreos/go-systemd/util/util.go -------------------------------------------------------------------------------- /api/vendor/github.com/go-errors/errors/LICENSE.MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/github.com/go-errors/errors/LICENSE.MIT -------------------------------------------------------------------------------- /api/vendor/github.com/go-errors/errors/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/github.com/go-errors/errors/README.md -------------------------------------------------------------------------------- /api/vendor/github.com/go-errors/errors/cover.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/github.com/go-errors/errors/cover.out -------------------------------------------------------------------------------- /api/vendor/github.com/go-errors/errors/error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/github.com/go-errors/errors/error.go -------------------------------------------------------------------------------- /api/vendor/github.com/go-errors/errors/error_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/github.com/go-errors/errors/error_test.go -------------------------------------------------------------------------------- /api/vendor/github.com/go-errors/errors/parse_panic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/github.com/go-errors/errors/parse_panic.go -------------------------------------------------------------------------------- /api/vendor/github.com/go-errors/errors/stackframe.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/github.com/go-errors/errors/stackframe.go -------------------------------------------------------------------------------- /api/vendor/github.com/jmoiron/sqlx/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/github.com/jmoiron/sqlx/.gitignore -------------------------------------------------------------------------------- /api/vendor/github.com/jmoiron/sqlx/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/github.com/jmoiron/sqlx/LICENSE -------------------------------------------------------------------------------- /api/vendor/github.com/jmoiron/sqlx/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/github.com/jmoiron/sqlx/README.md -------------------------------------------------------------------------------- /api/vendor/github.com/jmoiron/sqlx/bind.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/github.com/jmoiron/sqlx/bind.go -------------------------------------------------------------------------------- /api/vendor/github.com/jmoiron/sqlx/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/github.com/jmoiron/sqlx/doc.go -------------------------------------------------------------------------------- /api/vendor/github.com/jmoiron/sqlx/named.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/github.com/jmoiron/sqlx/named.go -------------------------------------------------------------------------------- /api/vendor/github.com/jmoiron/sqlx/named_context.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/github.com/jmoiron/sqlx/named_context.go -------------------------------------------------------------------------------- /api/vendor/github.com/jmoiron/sqlx/named_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/github.com/jmoiron/sqlx/named_test.go -------------------------------------------------------------------------------- /api/vendor/github.com/jmoiron/sqlx/reflectx/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/github.com/jmoiron/sqlx/reflectx/README.md -------------------------------------------------------------------------------- /api/vendor/github.com/jmoiron/sqlx/sqlx.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/github.com/jmoiron/sqlx/sqlx.go -------------------------------------------------------------------------------- /api/vendor/github.com/jmoiron/sqlx/sqlx_context.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/github.com/jmoiron/sqlx/sqlx_context.go -------------------------------------------------------------------------------- /api/vendor/github.com/jmoiron/sqlx/sqlx_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/github.com/jmoiron/sqlx/sqlx_test.go -------------------------------------------------------------------------------- /api/vendor/github.com/jmoiron/sqlx/types/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/github.com/jmoiron/sqlx/types/README.md -------------------------------------------------------------------------------- /api/vendor/github.com/jmoiron/sqlx/types/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/github.com/jmoiron/sqlx/types/types.go -------------------------------------------------------------------------------- /api/vendor/github.com/justinas/alice/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/github.com/justinas/alice/.travis.yml -------------------------------------------------------------------------------- /api/vendor/github.com/justinas/alice/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/github.com/justinas/alice/LICENSE -------------------------------------------------------------------------------- /api/vendor/github.com/justinas/alice/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/github.com/justinas/alice/README.md -------------------------------------------------------------------------------- /api/vendor/github.com/justinas/alice/chain.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/github.com/justinas/alice/chain.go -------------------------------------------------------------------------------- /api/vendor/github.com/justinas/alice/chain_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/github.com/justinas/alice/chain_test.go -------------------------------------------------------------------------------- /api/vendor/github.com/lib/pq/.gitignore: -------------------------------------------------------------------------------- 1 | .db 2 | *.test 3 | *~ 4 | *.swp 5 | -------------------------------------------------------------------------------- /api/vendor/github.com/lib/pq/.travis.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/github.com/lib/pq/.travis.sh -------------------------------------------------------------------------------- /api/vendor/github.com/lib/pq/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/github.com/lib/pq/.travis.yml -------------------------------------------------------------------------------- /api/vendor/github.com/lib/pq/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/github.com/lib/pq/CONTRIBUTING.md -------------------------------------------------------------------------------- /api/vendor/github.com/lib/pq/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/github.com/lib/pq/LICENSE.md -------------------------------------------------------------------------------- /api/vendor/github.com/lib/pq/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/github.com/lib/pq/README.md -------------------------------------------------------------------------------- /api/vendor/github.com/lib/pq/array.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/github.com/lib/pq/array.go -------------------------------------------------------------------------------- /api/vendor/github.com/lib/pq/array_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/github.com/lib/pq/array_test.go -------------------------------------------------------------------------------- /api/vendor/github.com/lib/pq/bench_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/github.com/lib/pq/bench_test.go -------------------------------------------------------------------------------- /api/vendor/github.com/lib/pq/buf.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/github.com/lib/pq/buf.go -------------------------------------------------------------------------------- /api/vendor/github.com/lib/pq/certs/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/github.com/lib/pq/certs/README -------------------------------------------------------------------------------- /api/vendor/github.com/lib/pq/certs/bogus_root.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/github.com/lib/pq/certs/bogus_root.crt -------------------------------------------------------------------------------- /api/vendor/github.com/lib/pq/certs/postgresql.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/github.com/lib/pq/certs/postgresql.crt -------------------------------------------------------------------------------- /api/vendor/github.com/lib/pq/certs/postgresql.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/github.com/lib/pq/certs/postgresql.key -------------------------------------------------------------------------------- /api/vendor/github.com/lib/pq/certs/root.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/github.com/lib/pq/certs/root.crt -------------------------------------------------------------------------------- /api/vendor/github.com/lib/pq/certs/server.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/github.com/lib/pq/certs/server.crt -------------------------------------------------------------------------------- /api/vendor/github.com/lib/pq/certs/server.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/github.com/lib/pq/certs/server.key -------------------------------------------------------------------------------- /api/vendor/github.com/lib/pq/conn.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/github.com/lib/pq/conn.go -------------------------------------------------------------------------------- /api/vendor/github.com/lib/pq/conn_go18.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/github.com/lib/pq/conn_go18.go -------------------------------------------------------------------------------- /api/vendor/github.com/lib/pq/conn_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/github.com/lib/pq/conn_test.go -------------------------------------------------------------------------------- /api/vendor/github.com/lib/pq/copy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/github.com/lib/pq/copy.go -------------------------------------------------------------------------------- /api/vendor/github.com/lib/pq/copy_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/github.com/lib/pq/copy_test.go -------------------------------------------------------------------------------- /api/vendor/github.com/lib/pq/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/github.com/lib/pq/doc.go -------------------------------------------------------------------------------- /api/vendor/github.com/lib/pq/encode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/github.com/lib/pq/encode.go -------------------------------------------------------------------------------- /api/vendor/github.com/lib/pq/encode_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/github.com/lib/pq/encode_test.go -------------------------------------------------------------------------------- /api/vendor/github.com/lib/pq/error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/github.com/lib/pq/error.go -------------------------------------------------------------------------------- /api/vendor/github.com/lib/pq/go18_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/github.com/lib/pq/go18_test.go -------------------------------------------------------------------------------- /api/vendor/github.com/lib/pq/hstore/hstore.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/github.com/lib/pq/hstore/hstore.go -------------------------------------------------------------------------------- /api/vendor/github.com/lib/pq/hstore/hstore_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/github.com/lib/pq/hstore/hstore_test.go -------------------------------------------------------------------------------- /api/vendor/github.com/lib/pq/issues_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/github.com/lib/pq/issues_test.go -------------------------------------------------------------------------------- /api/vendor/github.com/lib/pq/listen_example/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/github.com/lib/pq/listen_example/doc.go -------------------------------------------------------------------------------- /api/vendor/github.com/lib/pq/notify.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/github.com/lib/pq/notify.go -------------------------------------------------------------------------------- /api/vendor/github.com/lib/pq/notify_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/github.com/lib/pq/notify_test.go -------------------------------------------------------------------------------- /api/vendor/github.com/lib/pq/oid/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/github.com/lib/pq/oid/doc.go -------------------------------------------------------------------------------- /api/vendor/github.com/lib/pq/oid/gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/github.com/lib/pq/oid/gen.go -------------------------------------------------------------------------------- /api/vendor/github.com/lib/pq/oid/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/github.com/lib/pq/oid/types.go -------------------------------------------------------------------------------- /api/vendor/github.com/lib/pq/ssl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/github.com/lib/pq/ssl.go -------------------------------------------------------------------------------- /api/vendor/github.com/lib/pq/ssl_go1.7.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/github.com/lib/pq/ssl_go1.7.go -------------------------------------------------------------------------------- /api/vendor/github.com/lib/pq/ssl_permissions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/github.com/lib/pq/ssl_permissions.go -------------------------------------------------------------------------------- /api/vendor/github.com/lib/pq/ssl_renegotiation.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/github.com/lib/pq/ssl_renegotiation.go -------------------------------------------------------------------------------- /api/vendor/github.com/lib/pq/ssl_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/github.com/lib/pq/ssl_test.go -------------------------------------------------------------------------------- /api/vendor/github.com/lib/pq/ssl_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/github.com/lib/pq/ssl_windows.go -------------------------------------------------------------------------------- /api/vendor/github.com/lib/pq/url.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/github.com/lib/pq/url.go -------------------------------------------------------------------------------- /api/vendor/github.com/lib/pq/url_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/github.com/lib/pq/url_test.go -------------------------------------------------------------------------------- /api/vendor/github.com/lib/pq/user_posix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/github.com/lib/pq/user_posix.go -------------------------------------------------------------------------------- /api/vendor/github.com/lib/pq/user_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/github.com/lib/pq/user_windows.go -------------------------------------------------------------------------------- /api/vendor/github.com/lib/pq/uuid.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/github.com/lib/pq/uuid.go -------------------------------------------------------------------------------- /api/vendor/github.com/lib/pq/uuid_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/github.com/lib/pq/uuid_test.go -------------------------------------------------------------------------------- /api/vendor/github.com/rs/cors/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/github.com/rs/cors/.travis.yml -------------------------------------------------------------------------------- /api/vendor/github.com/rs/cors/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/github.com/rs/cors/LICENSE -------------------------------------------------------------------------------- /api/vendor/github.com/rs/cors/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/github.com/rs/cors/README.md -------------------------------------------------------------------------------- /api/vendor/github.com/rs/cors/bench_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/github.com/rs/cors/bench_test.go -------------------------------------------------------------------------------- /api/vendor/github.com/rs/cors/cors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/github.com/rs/cors/cors.go -------------------------------------------------------------------------------- /api/vendor/github.com/rs/cors/cors_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/github.com/rs/cors/cors_test.go -------------------------------------------------------------------------------- /api/vendor/github.com/rs/cors/examples/goji/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/github.com/rs/cors/examples/goji/server.go -------------------------------------------------------------------------------- /api/vendor/github.com/rs/cors/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/github.com/rs/cors/utils.go -------------------------------------------------------------------------------- /api/vendor/github.com/rs/cors/utils_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/github.com/rs/cors/utils_test.go -------------------------------------------------------------------------------- /api/vendor/github.com/rs/xhandler/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/github.com/rs/xhandler/.travis.yml -------------------------------------------------------------------------------- /api/vendor/github.com/rs/xhandler/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/github.com/rs/xhandler/LICENSE -------------------------------------------------------------------------------- /api/vendor/github.com/rs/xhandler/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/github.com/rs/xhandler/README.md -------------------------------------------------------------------------------- /api/vendor/github.com/rs/xhandler/chain.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/github.com/rs/xhandler/chain.go -------------------------------------------------------------------------------- /api/vendor/github.com/rs/xhandler/chain_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/github.com/rs/xhandler/chain_test.go -------------------------------------------------------------------------------- /api/vendor/github.com/rs/xhandler/middleware.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/github.com/rs/xhandler/middleware.go -------------------------------------------------------------------------------- /api/vendor/github.com/rs/xhandler/middleware_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/github.com/rs/xhandler/middleware_test.go -------------------------------------------------------------------------------- /api/vendor/github.com/rs/xhandler/xhandler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/github.com/rs/xhandler/xhandler.go -------------------------------------------------------------------------------- /api/vendor/github.com/rs/xhandler/xhandler_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/github.com/rs/xhandler/xhandler_test.go -------------------------------------------------------------------------------- /api/vendor/github.com/rs/xhandler/xmux/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/github.com/rs/xhandler/xmux/README.md -------------------------------------------------------------------------------- /api/vendor/github.com/satori/go.uuid/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/github.com/satori/go.uuid/.travis.yml -------------------------------------------------------------------------------- /api/vendor/github.com/satori/go.uuid/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/github.com/satori/go.uuid/LICENSE -------------------------------------------------------------------------------- /api/vendor/github.com/satori/go.uuid/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/github.com/satori/go.uuid/README.md -------------------------------------------------------------------------------- /api/vendor/github.com/satori/go.uuid/uuid.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/github.com/satori/go.uuid/uuid.go -------------------------------------------------------------------------------- /api/vendor/github.com/satori/go.uuid/uuid_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/github.com/satori/go.uuid/uuid_test.go -------------------------------------------------------------------------------- /api/vendor/github.com/square/go-jose/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/github.com/square/go-jose/.gitignore -------------------------------------------------------------------------------- /api/vendor/github.com/square/go-jose/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/github.com/square/go-jose/.travis.yml -------------------------------------------------------------------------------- /api/vendor/github.com/square/go-jose/BUG-BOUNTY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/github.com/square/go-jose/BUG-BOUNTY.md -------------------------------------------------------------------------------- /api/vendor/github.com/square/go-jose/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/github.com/square/go-jose/CONTRIBUTING.md -------------------------------------------------------------------------------- /api/vendor/github.com/square/go-jose/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/github.com/square/go-jose/LICENSE -------------------------------------------------------------------------------- /api/vendor/github.com/square/go-jose/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/github.com/square/go-jose/README.md -------------------------------------------------------------------------------- /api/vendor/github.com/square/go-jose/asymmetric.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/github.com/square/go-jose/asymmetric.go -------------------------------------------------------------------------------- /api/vendor/github.com/square/go-jose/crypter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/github.com/square/go-jose/crypter.go -------------------------------------------------------------------------------- /api/vendor/github.com/square/go-jose/crypter_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/github.com/square/go-jose/crypter_test.go -------------------------------------------------------------------------------- /api/vendor/github.com/square/go-jose/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/github.com/square/go-jose/doc.go -------------------------------------------------------------------------------- /api/vendor/github.com/square/go-jose/doc_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/github.com/square/go-jose/doc_test.go -------------------------------------------------------------------------------- /api/vendor/github.com/square/go-jose/encoding.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/github.com/square/go-jose/encoding.go -------------------------------------------------------------------------------- /api/vendor/github.com/square/go-jose/encoding_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/github.com/square/go-jose/encoding_test.go -------------------------------------------------------------------------------- /api/vendor/github.com/square/go-jose/json/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/github.com/square/go-jose/json/LICENSE -------------------------------------------------------------------------------- /api/vendor/github.com/square/go-jose/json/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/github.com/square/go-jose/json/README.md -------------------------------------------------------------------------------- /api/vendor/github.com/square/go-jose/json/decode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/github.com/square/go-jose/json/decode.go -------------------------------------------------------------------------------- /api/vendor/github.com/square/go-jose/json/encode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/github.com/square/go-jose/json/encode.go -------------------------------------------------------------------------------- /api/vendor/github.com/square/go-jose/json/indent.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/github.com/square/go-jose/json/indent.go -------------------------------------------------------------------------------- /api/vendor/github.com/square/go-jose/json/scanner.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/github.com/square/go-jose/json/scanner.go -------------------------------------------------------------------------------- /api/vendor/github.com/square/go-jose/json/stream.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/github.com/square/go-jose/json/stream.go -------------------------------------------------------------------------------- /api/vendor/github.com/square/go-jose/json/tags.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/github.com/square/go-jose/json/tags.go -------------------------------------------------------------------------------- /api/vendor/github.com/square/go-jose/jwe.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/github.com/square/go-jose/jwe.go -------------------------------------------------------------------------------- /api/vendor/github.com/square/go-jose/jwe_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/github.com/square/go-jose/jwe_test.go -------------------------------------------------------------------------------- /api/vendor/github.com/square/go-jose/jwk.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/github.com/square/go-jose/jwk.go -------------------------------------------------------------------------------- /api/vendor/github.com/square/go-jose/jwk_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/github.com/square/go-jose/jwk_test.go -------------------------------------------------------------------------------- /api/vendor/github.com/square/go-jose/jws.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/github.com/square/go-jose/jws.go -------------------------------------------------------------------------------- /api/vendor/github.com/square/go-jose/jws_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/github.com/square/go-jose/jws_test.go -------------------------------------------------------------------------------- /api/vendor/github.com/square/go-jose/shared.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/github.com/square/go-jose/shared.go -------------------------------------------------------------------------------- /api/vendor/github.com/square/go-jose/signing.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/github.com/square/go-jose/signing.go -------------------------------------------------------------------------------- /api/vendor/github.com/square/go-jose/signing_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/github.com/square/go-jose/signing_test.go -------------------------------------------------------------------------------- /api/vendor/github.com/square/go-jose/symmetric.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/github.com/square/go-jose/symmetric.go -------------------------------------------------------------------------------- /api/vendor/github.com/square/go-jose/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/github.com/square/go-jose/utils.go -------------------------------------------------------------------------------- /api/vendor/github.com/square/go-jose/utils_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/github.com/square/go-jose/utils_test.go -------------------------------------------------------------------------------- /api/vendor/go.uber.org/atomic/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/go.uber.org/atomic/.gitignore -------------------------------------------------------------------------------- /api/vendor/go.uber.org/atomic/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/go.uber.org/atomic/.travis.yml -------------------------------------------------------------------------------- /api/vendor/go.uber.org/atomic/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/go.uber.org/atomic/LICENSE.txt -------------------------------------------------------------------------------- /api/vendor/go.uber.org/atomic/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/go.uber.org/atomic/Makefile -------------------------------------------------------------------------------- /api/vendor/go.uber.org/atomic/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/go.uber.org/atomic/README.md -------------------------------------------------------------------------------- /api/vendor/go.uber.org/atomic/atomic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/go.uber.org/atomic/atomic.go -------------------------------------------------------------------------------- /api/vendor/go.uber.org/atomic/atomic_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/go.uber.org/atomic/atomic_test.go -------------------------------------------------------------------------------- /api/vendor/go.uber.org/atomic/example_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/go.uber.org/atomic/example_test.go -------------------------------------------------------------------------------- /api/vendor/go.uber.org/atomic/glide.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/go.uber.org/atomic/glide.lock -------------------------------------------------------------------------------- /api/vendor/go.uber.org/atomic/glide.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/go.uber.org/atomic/glide.yaml -------------------------------------------------------------------------------- /api/vendor/go.uber.org/atomic/scripts/cover.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/go.uber.org/atomic/scripts/cover.sh -------------------------------------------------------------------------------- /api/vendor/go.uber.org/atomic/scripts/test-ubergo.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/go.uber.org/atomic/scripts/test-ubergo.sh -------------------------------------------------------------------------------- /api/vendor/go.uber.org/atomic/stress_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/go.uber.org/atomic/stress_test.go -------------------------------------------------------------------------------- /api/vendor/go.uber.org/atomic/string.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/go.uber.org/atomic/string.go -------------------------------------------------------------------------------- /api/vendor/go.uber.org/atomic/string_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/go.uber.org/atomic/string_test.go -------------------------------------------------------------------------------- /api/vendor/go.uber.org/zap/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/go.uber.org/zap/.gitignore -------------------------------------------------------------------------------- /api/vendor/go.uber.org/zap/.readme.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/go.uber.org/zap/.readme.tmpl -------------------------------------------------------------------------------- /api/vendor/go.uber.org/zap/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/go.uber.org/zap/.travis.yml -------------------------------------------------------------------------------- /api/vendor/go.uber.org/zap/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/go.uber.org/zap/CHANGELOG.md -------------------------------------------------------------------------------- /api/vendor/go.uber.org/zap/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/go.uber.org/zap/CONTRIBUTING.md -------------------------------------------------------------------------------- /api/vendor/go.uber.org/zap/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/go.uber.org/zap/LICENSE.txt -------------------------------------------------------------------------------- /api/vendor/go.uber.org/zap/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/go.uber.org/zap/Makefile -------------------------------------------------------------------------------- /api/vendor/go.uber.org/zap/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/go.uber.org/zap/README.md -------------------------------------------------------------------------------- /api/vendor/go.uber.org/zap/array.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/go.uber.org/zap/array.go -------------------------------------------------------------------------------- /api/vendor/go.uber.org/zap/array_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/go.uber.org/zap/array_test.go -------------------------------------------------------------------------------- /api/vendor/go.uber.org/zap/benchmarks/apex_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/go.uber.org/zap/benchmarks/apex_test.go -------------------------------------------------------------------------------- /api/vendor/go.uber.org/zap/benchmarks/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/go.uber.org/zap/benchmarks/doc.go -------------------------------------------------------------------------------- /api/vendor/go.uber.org/zap/benchmarks/kit_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/go.uber.org/zap/benchmarks/kit_test.go -------------------------------------------------------------------------------- /api/vendor/go.uber.org/zap/benchmarks/lion_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/go.uber.org/zap/benchmarks/lion_test.go -------------------------------------------------------------------------------- /api/vendor/go.uber.org/zap/benchmarks/log15_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/go.uber.org/zap/benchmarks/log15_test.go -------------------------------------------------------------------------------- /api/vendor/go.uber.org/zap/benchmarks/logrus_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/go.uber.org/zap/benchmarks/logrus_test.go -------------------------------------------------------------------------------- /api/vendor/go.uber.org/zap/benchmarks/zap_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/go.uber.org/zap/benchmarks/zap_test.go -------------------------------------------------------------------------------- /api/vendor/go.uber.org/zap/buffer/buffer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/go.uber.org/zap/buffer/buffer.go -------------------------------------------------------------------------------- /api/vendor/go.uber.org/zap/buffer/buffer_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/go.uber.org/zap/buffer/buffer_test.go -------------------------------------------------------------------------------- /api/vendor/go.uber.org/zap/buffer/pool.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/go.uber.org/zap/buffer/pool.go -------------------------------------------------------------------------------- /api/vendor/go.uber.org/zap/buffer/pool_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/go.uber.org/zap/buffer/pool_test.go -------------------------------------------------------------------------------- /api/vendor/go.uber.org/zap/check_license.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/go.uber.org/zap/check_license.sh -------------------------------------------------------------------------------- /api/vendor/go.uber.org/zap/common_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/go.uber.org/zap/common_test.go -------------------------------------------------------------------------------- /api/vendor/go.uber.org/zap/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/go.uber.org/zap/config.go -------------------------------------------------------------------------------- /api/vendor/go.uber.org/zap/config_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/go.uber.org/zap/config_test.go -------------------------------------------------------------------------------- /api/vendor/go.uber.org/zap/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/go.uber.org/zap/doc.go -------------------------------------------------------------------------------- /api/vendor/go.uber.org/zap/encoder.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/go.uber.org/zap/encoder.go -------------------------------------------------------------------------------- /api/vendor/go.uber.org/zap/encoder_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/go.uber.org/zap/encoder_test.go -------------------------------------------------------------------------------- /api/vendor/go.uber.org/zap/field.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/go.uber.org/zap/field.go -------------------------------------------------------------------------------- /api/vendor/go.uber.org/zap/field_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/go.uber.org/zap/field_test.go -------------------------------------------------------------------------------- /api/vendor/go.uber.org/zap/flag.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/go.uber.org/zap/flag.go -------------------------------------------------------------------------------- /api/vendor/go.uber.org/zap/flag_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/go.uber.org/zap/flag_test.go -------------------------------------------------------------------------------- /api/vendor/go.uber.org/zap/glide.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/go.uber.org/zap/glide.lock -------------------------------------------------------------------------------- /api/vendor/go.uber.org/zap/glide.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/go.uber.org/zap/glide.yaml -------------------------------------------------------------------------------- /api/vendor/go.uber.org/zap/global.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/go.uber.org/zap/global.go -------------------------------------------------------------------------------- /api/vendor/go.uber.org/zap/global_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/go.uber.org/zap/global_test.go -------------------------------------------------------------------------------- /api/vendor/go.uber.org/zap/http_handler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/go.uber.org/zap/http_handler.go -------------------------------------------------------------------------------- /api/vendor/go.uber.org/zap/http_handler_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/go.uber.org/zap/http_handler_test.go -------------------------------------------------------------------------------- /api/vendor/go.uber.org/zap/internal/color/color.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/go.uber.org/zap/internal/color/color.go -------------------------------------------------------------------------------- /api/vendor/go.uber.org/zap/internal/exit/exit.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/go.uber.org/zap/internal/exit/exit.go -------------------------------------------------------------------------------- /api/vendor/go.uber.org/zap/internal/exit/exit_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/go.uber.org/zap/internal/exit/exit_test.go -------------------------------------------------------------------------------- /api/vendor/go.uber.org/zap/internal/readme/readme.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/go.uber.org/zap/internal/readme/readme.go -------------------------------------------------------------------------------- /api/vendor/go.uber.org/zap/level.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/go.uber.org/zap/level.go -------------------------------------------------------------------------------- /api/vendor/go.uber.org/zap/level_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/go.uber.org/zap/level_test.go -------------------------------------------------------------------------------- /api/vendor/go.uber.org/zap/logger.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/go.uber.org/zap/logger.go -------------------------------------------------------------------------------- /api/vendor/go.uber.org/zap/logger_bench_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/go.uber.org/zap/logger_bench_test.go -------------------------------------------------------------------------------- /api/vendor/go.uber.org/zap/logger_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/go.uber.org/zap/logger_test.go -------------------------------------------------------------------------------- /api/vendor/go.uber.org/zap/options.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/go.uber.org/zap/options.go -------------------------------------------------------------------------------- /api/vendor/go.uber.org/zap/stacktrace.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/go.uber.org/zap/stacktrace.go -------------------------------------------------------------------------------- /api/vendor/go.uber.org/zap/stacktrace_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/go.uber.org/zap/stacktrace_test.go -------------------------------------------------------------------------------- /api/vendor/go.uber.org/zap/sugar.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/go.uber.org/zap/sugar.go -------------------------------------------------------------------------------- /api/vendor/go.uber.org/zap/sugar_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/go.uber.org/zap/sugar_test.go -------------------------------------------------------------------------------- /api/vendor/go.uber.org/zap/time.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/go.uber.org/zap/time.go -------------------------------------------------------------------------------- /api/vendor/go.uber.org/zap/time_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/go.uber.org/zap/time_test.go -------------------------------------------------------------------------------- /api/vendor/go.uber.org/zap/writer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/go.uber.org/zap/writer.go -------------------------------------------------------------------------------- /api/vendor/go.uber.org/zap/writer_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/go.uber.org/zap/writer_test.go -------------------------------------------------------------------------------- /api/vendor/go.uber.org/zap/zapcore/console_encoder.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/go.uber.org/zap/zapcore/console_encoder.go -------------------------------------------------------------------------------- /api/vendor/go.uber.org/zap/zapcore/core.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/go.uber.org/zap/zapcore/core.go -------------------------------------------------------------------------------- /api/vendor/go.uber.org/zap/zapcore/core_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/go.uber.org/zap/zapcore/core_test.go -------------------------------------------------------------------------------- /api/vendor/go.uber.org/zap/zapcore/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/go.uber.org/zap/zapcore/doc.go -------------------------------------------------------------------------------- /api/vendor/go.uber.org/zap/zapcore/encoder.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/go.uber.org/zap/zapcore/encoder.go -------------------------------------------------------------------------------- /api/vendor/go.uber.org/zap/zapcore/encoder_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/go.uber.org/zap/zapcore/encoder_test.go -------------------------------------------------------------------------------- /api/vendor/go.uber.org/zap/zapcore/entry.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/go.uber.org/zap/zapcore/entry.go -------------------------------------------------------------------------------- /api/vendor/go.uber.org/zap/zapcore/entry_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/go.uber.org/zap/zapcore/entry_test.go -------------------------------------------------------------------------------- /api/vendor/go.uber.org/zap/zapcore/field.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/go.uber.org/zap/zapcore/field.go -------------------------------------------------------------------------------- /api/vendor/go.uber.org/zap/zapcore/field_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/go.uber.org/zap/zapcore/field_test.go -------------------------------------------------------------------------------- /api/vendor/go.uber.org/zap/zapcore/hook.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/go.uber.org/zap/zapcore/hook.go -------------------------------------------------------------------------------- /api/vendor/go.uber.org/zap/zapcore/hook_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/go.uber.org/zap/zapcore/hook_test.go -------------------------------------------------------------------------------- /api/vendor/go.uber.org/zap/zapcore/json_encoder.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/go.uber.org/zap/zapcore/json_encoder.go -------------------------------------------------------------------------------- /api/vendor/go.uber.org/zap/zapcore/level.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/go.uber.org/zap/zapcore/level.go -------------------------------------------------------------------------------- /api/vendor/go.uber.org/zap/zapcore/level_strings.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/go.uber.org/zap/zapcore/level_strings.go -------------------------------------------------------------------------------- /api/vendor/go.uber.org/zap/zapcore/level_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/go.uber.org/zap/zapcore/level_test.go -------------------------------------------------------------------------------- /api/vendor/go.uber.org/zap/zapcore/marshaler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/go.uber.org/zap/zapcore/marshaler.go -------------------------------------------------------------------------------- /api/vendor/go.uber.org/zap/zapcore/memory_encoder.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/go.uber.org/zap/zapcore/memory_encoder.go -------------------------------------------------------------------------------- /api/vendor/go.uber.org/zap/zapcore/sampler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/go.uber.org/zap/zapcore/sampler.go -------------------------------------------------------------------------------- /api/vendor/go.uber.org/zap/zapcore/sampler_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/go.uber.org/zap/zapcore/sampler_test.go -------------------------------------------------------------------------------- /api/vendor/go.uber.org/zap/zapcore/tee.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/go.uber.org/zap/zapcore/tee.go -------------------------------------------------------------------------------- /api/vendor/go.uber.org/zap/zapcore/tee_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/go.uber.org/zap/zapcore/tee_test.go -------------------------------------------------------------------------------- /api/vendor/go.uber.org/zap/zapcore/write_syncer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/go.uber.org/zap/zapcore/write_syncer.go -------------------------------------------------------------------------------- /api/vendor/go.uber.org/zap/zapgrpc/zapgrpc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/go.uber.org/zap/zapgrpc/zapgrpc.go -------------------------------------------------------------------------------- /api/vendor/go.uber.org/zap/zapgrpc/zapgrpc_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/go.uber.org/zap/zapgrpc/zapgrpc_test.go -------------------------------------------------------------------------------- /api/vendor/go.uber.org/zap/zaptest/timeout.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/go.uber.org/zap/zaptest/timeout.go -------------------------------------------------------------------------------- /api/vendor/go.uber.org/zap/zaptest/writer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/go.uber.org/zap/zaptest/writer.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/golang.org/x/net/.gitattributes -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/golang.org/x/net/.gitignore -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/golang.org/x/net/AUTHORS -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/golang.org/x/net/CONTRIBUTING.md -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/golang.org/x/net/CONTRIBUTORS -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/golang.org/x/net/LICENSE -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/golang.org/x/net/PATENTS -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/golang.org/x/net/README -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/bpf/asm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/golang.org/x/net/bpf/asm.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/bpf/constants.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/golang.org/x/net/bpf/constants.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/bpf/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/golang.org/x/net/bpf/doc.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/bpf/instructions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/golang.org/x/net/bpf/instructions.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/bpf/instructions_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/golang.org/x/net/bpf/instructions_test.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/bpf/vm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/golang.org/x/net/bpf/vm.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/bpf/vm_aluop_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/golang.org/x/net/bpf/vm_aluop_test.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/bpf/vm_bpf_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/golang.org/x/net/bpf/vm_bpf_test.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/bpf/vm_extension_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/golang.org/x/net/bpf/vm_extension_test.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/bpf/vm_instructions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/golang.org/x/net/bpf/vm_instructions.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/bpf/vm_jump_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/golang.org/x/net/bpf/vm_jump_test.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/bpf/vm_load_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/golang.org/x/net/bpf/vm_load_test.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/bpf/vm_ret_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/golang.org/x/net/bpf/vm_ret_test.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/bpf/vm_scratch_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/golang.org/x/net/bpf/vm_scratch_test.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/bpf/vm_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/golang.org/x/net/bpf/vm_test.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/codereview.cfg: -------------------------------------------------------------------------------- 1 | issuerepo: golang/go 2 | -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/context/context.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/golang.org/x/net/context/context.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/context/context_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/golang.org/x/net/context/context_test.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/context/go17.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/golang.org/x/net/context/go17.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/context/pre_go17.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/golang.org/x/net/context/pre_go17.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/dict/dict.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/golang.org/x/net/dict/dict.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/dns/dnsmessage/message.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/golang.org/x/net/dns/dnsmessage/message.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/html/atom/atom.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/golang.org/x/net/html/atom/atom.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/html/atom/atom_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/golang.org/x/net/html/atom/atom_test.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/html/atom/gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/golang.org/x/net/html/atom/gen.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/html/atom/table.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/golang.org/x/net/html/atom/table.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/html/atom/table_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/golang.org/x/net/html/atom/table_test.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/html/charset/charset.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/golang.org/x/net/html/charset/charset.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/html/const.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/golang.org/x/net/html/const.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/html/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/golang.org/x/net/html/doc.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/html/doctype.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/golang.org/x/net/html/doctype.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/html/entity.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/golang.org/x/net/html/entity.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/html/entity_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/golang.org/x/net/html/entity_test.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/html/escape.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/golang.org/x/net/html/escape.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/html/escape_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/golang.org/x/net/html/escape_test.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/html/example_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/golang.org/x/net/html/example_test.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/html/foreign.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/golang.org/x/net/html/foreign.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/html/node.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/golang.org/x/net/html/node.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/html/node_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/golang.org/x/net/html/node_test.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/html/parse.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/golang.org/x/net/html/parse.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/html/parse_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/golang.org/x/net/html/parse_test.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/html/render.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/golang.org/x/net/html/render.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/html/render_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/golang.org/x/net/html/render_test.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/html/testdata/go1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/golang.org/x/net/html/testdata/go1.html -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/html/token.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/golang.org/x/net/html/token.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/html/token_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/golang.org/x/net/html/token_test.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/http2/.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | h2i/h2i 3 | -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/http2/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/golang.org/x/net/http2/Dockerfile -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/http2/Makefile: -------------------------------------------------------------------------------- 1 | curlimage: 2 | docker build -t gohttp2/curl . 3 | 4 | -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/http2/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/golang.org/x/net/http2/README -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/http2/ciphers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/golang.org/x/net/http2/ciphers.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/http2/ciphers_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/golang.org/x/net/http2/ciphers_test.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/http2/client_conn_pool.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/golang.org/x/net/http2/client_conn_pool.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/http2/databuffer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/golang.org/x/net/http2/databuffer.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/http2/databuffer_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/golang.org/x/net/http2/databuffer_test.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/http2/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/golang.org/x/net/http2/errors.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/http2/errors_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/golang.org/x/net/http2/errors_test.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/http2/flow.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/golang.org/x/net/http2/flow.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/http2/flow_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/golang.org/x/net/http2/flow_test.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/http2/frame.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/golang.org/x/net/http2/frame.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/http2/frame_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/golang.org/x/net/http2/frame_test.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/http2/go16.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/golang.org/x/net/http2/go16.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/http2/go17.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/golang.org/x/net/http2/go17.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/http2/go17_not18.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/golang.org/x/net/http2/go17_not18.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/http2/go18.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/golang.org/x/net/http2/go18.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/http2/go18_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/golang.org/x/net/http2/go18_test.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/http2/go19.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/golang.org/x/net/http2/go19.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/http2/go19_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/golang.org/x/net/http2/go19_test.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/http2/gotrack.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/golang.org/x/net/http2/gotrack.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/http2/gotrack_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/golang.org/x/net/http2/gotrack_test.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/http2/h2demo/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/golang.org/x/net/http2/h2demo/.gitignore -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/http2/h2demo/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/golang.org/x/net/http2/h2demo/Makefile -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/http2/h2demo/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/golang.org/x/net/http2/h2demo/README -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/http2/h2demo/h2demo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/golang.org/x/net/http2/h2demo/h2demo.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/http2/h2demo/launch.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/golang.org/x/net/http2/h2demo/launch.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/http2/h2demo/rootCA.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/golang.org/x/net/http2/h2demo/rootCA.key -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/http2/h2demo/rootCA.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/golang.org/x/net/http2/h2demo/rootCA.pem -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/http2/h2demo/rootCA.srl: -------------------------------------------------------------------------------- 1 | E2CE26BF3285059C 2 | -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/http2/h2demo/server.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/golang.org/x/net/http2/h2demo/server.crt -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/http2/h2demo/server.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/golang.org/x/net/http2/h2demo/server.key -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/http2/h2demo/tmpl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/golang.org/x/net/http2/h2demo/tmpl.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/http2/h2i/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/golang.org/x/net/http2/h2i/README.md -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/http2/h2i/h2i.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/golang.org/x/net/http2/h2i/h2i.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/http2/headermap.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/golang.org/x/net/http2/headermap.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/http2/hpack/encode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/golang.org/x/net/http2/hpack/encode.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/http2/hpack/hpack.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/golang.org/x/net/http2/hpack/hpack.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/http2/hpack/hpack_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/golang.org/x/net/http2/hpack/hpack_test.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/http2/hpack/huffman.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/golang.org/x/net/http2/hpack/huffman.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/http2/hpack/tables.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/golang.org/x/net/http2/hpack/tables.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/http2/http2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/golang.org/x/net/http2/http2.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/http2/http2_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/golang.org/x/net/http2/http2_test.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/http2/not_go16.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/golang.org/x/net/http2/not_go16.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/http2/not_go17.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/golang.org/x/net/http2/not_go17.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/http2/not_go18.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/golang.org/x/net/http2/not_go18.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/http2/not_go19.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/golang.org/x/net/http2/not_go19.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/http2/pipe.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/golang.org/x/net/http2/pipe.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/http2/pipe_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/golang.org/x/net/http2/pipe_test.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/http2/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/golang.org/x/net/http2/server.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/http2/server_push_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/golang.org/x/net/http2/server_push_test.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/http2/server_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/golang.org/x/net/http2/server_test.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/http2/transport.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/golang.org/x/net/http2/transport.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/http2/transport_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/golang.org/x/net/http2/transport_test.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/http2/write.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/golang.org/x/net/http2/write.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/http2/writesched.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/golang.org/x/net/http2/writesched.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/http2/writesched_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/golang.org/x/net/http2/writesched_test.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/http2/z_spec_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/golang.org/x/net/http2/z_spec_test.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/icmp/dstunreach.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/golang.org/x/net/icmp/dstunreach.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/icmp/echo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/golang.org/x/net/icmp/echo.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/icmp/endpoint.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/golang.org/x/net/icmp/endpoint.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/icmp/example_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/golang.org/x/net/icmp/example_test.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/icmp/extension.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/golang.org/x/net/icmp/extension.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/icmp/extension_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/golang.org/x/net/icmp/extension_test.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/icmp/helper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/golang.org/x/net/icmp/helper.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/icmp/helper_posix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/golang.org/x/net/icmp/helper_posix.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/icmp/interface.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/golang.org/x/net/icmp/interface.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/icmp/ipv4.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/golang.org/x/net/icmp/ipv4.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/icmp/ipv4_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/golang.org/x/net/icmp/ipv4_test.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/icmp/ipv6.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/golang.org/x/net/icmp/ipv6.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/icmp/listen_posix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/golang.org/x/net/icmp/listen_posix.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/icmp/listen_stub.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/golang.org/x/net/icmp/listen_stub.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/icmp/message.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/golang.org/x/net/icmp/message.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/icmp/message_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/golang.org/x/net/icmp/message_test.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/icmp/messagebody.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/golang.org/x/net/icmp/messagebody.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/icmp/mpls.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/golang.org/x/net/icmp/mpls.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/icmp/multipart.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/golang.org/x/net/icmp/multipart.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/icmp/multipart_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/golang.org/x/net/icmp/multipart_test.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/icmp/packettoobig.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/golang.org/x/net/icmp/packettoobig.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/icmp/paramprob.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/golang.org/x/net/icmp/paramprob.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/icmp/ping_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/golang.org/x/net/icmp/ping_test.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/icmp/sys_freebsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/golang.org/x/net/icmp/sys_freebsd.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/icmp/timeexceeded.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/golang.org/x/net/icmp/timeexceeded.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/idna/example_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/golang.org/x/net/idna/example_test.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/idna/idna.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/golang.org/x/net/idna/idna.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/idna/idna_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/golang.org/x/net/idna/idna_test.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/idna/punycode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/golang.org/x/net/idna/punycode.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/idna/punycode_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/golang.org/x/net/idna/punycode_test.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/idna/tables.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/golang.org/x/net/idna/tables.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/idna/trie.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/golang.org/x/net/idna/trie.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/idna/trieval.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/golang.org/x/net/idna/trieval.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/internal/iana/const.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/golang.org/x/net/internal/iana/const.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/internal/iana/gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/golang.org/x/net/internal/iana/gen.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/internal/nettest/stack.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/golang.org/x/net/internal/nettest/stack.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/internal/socket/socket.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/golang.org/x/net/internal/socket/socket.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/internal/socket/sys.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/golang.org/x/net/internal/socket/sys.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/ipv4/batch.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/golang.org/x/net/ipv4/batch.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/ipv4/bpf_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/golang.org/x/net/ipv4/bpf_test.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/ipv4/control.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/golang.org/x/net/ipv4/control.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/ipv4/control_bsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/golang.org/x/net/ipv4/control_bsd.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/ipv4/control_pktinfo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/golang.org/x/net/ipv4/control_pktinfo.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/ipv4/control_stub.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/golang.org/x/net/ipv4/control_stub.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/ipv4/control_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/golang.org/x/net/ipv4/control_unix.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/ipv4/control_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/golang.org/x/net/ipv4/control_windows.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/ipv4/defs_darwin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/golang.org/x/net/ipv4/defs_darwin.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/ipv4/defs_dragonfly.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/golang.org/x/net/ipv4/defs_dragonfly.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/ipv4/defs_freebsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/golang.org/x/net/ipv4/defs_freebsd.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/ipv4/defs_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/golang.org/x/net/ipv4/defs_linux.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/ipv4/defs_netbsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/golang.org/x/net/ipv4/defs_netbsd.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/ipv4/defs_openbsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/golang.org/x/net/ipv4/defs_openbsd.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/ipv4/defs_solaris.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/golang.org/x/net/ipv4/defs_solaris.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/ipv4/dgramopt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/golang.org/x/net/ipv4/dgramopt.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/ipv4/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/golang.org/x/net/ipv4/doc.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/ipv4/endpoint.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/golang.org/x/net/ipv4/endpoint.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/ipv4/example_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/golang.org/x/net/ipv4/example_test.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/ipv4/gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/golang.org/x/net/ipv4/gen.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/ipv4/genericopt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/golang.org/x/net/ipv4/genericopt.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/ipv4/header.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/golang.org/x/net/ipv4/header.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/ipv4/header_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/golang.org/x/net/ipv4/header_test.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/ipv4/helper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/golang.org/x/net/ipv4/helper.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/ipv4/iana.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/golang.org/x/net/ipv4/iana.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/ipv4/icmp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/golang.org/x/net/ipv4/icmp.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/ipv4/icmp_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/golang.org/x/net/ipv4/icmp_linux.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/ipv4/icmp_stub.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/golang.org/x/net/ipv4/icmp_stub.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/ipv4/icmp_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/golang.org/x/net/ipv4/icmp_test.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/ipv4/multicast_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/golang.org/x/net/ipv4/multicast_test.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/ipv4/packet.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/golang.org/x/net/ipv4/packet.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/ipv4/packet_go1_8.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/golang.org/x/net/ipv4/packet_go1_8.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/ipv4/packet_go1_9.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/golang.org/x/net/ipv4/packet_go1_9.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/ipv4/payload.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/golang.org/x/net/ipv4/payload.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/ipv4/payload_cmsg.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/golang.org/x/net/ipv4/payload_cmsg.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/ipv4/payload_nocmsg.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/golang.org/x/net/ipv4/payload_nocmsg.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/ipv4/readwrite_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/golang.org/x/net/ipv4/readwrite_test.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/ipv4/sockopt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/golang.org/x/net/ipv4/sockopt.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/ipv4/sockopt_posix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/golang.org/x/net/ipv4/sockopt_posix.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/ipv4/sockopt_stub.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/golang.org/x/net/ipv4/sockopt_stub.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/ipv4/sys_asmreq.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/golang.org/x/net/ipv4/sys_asmreq.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/ipv4/sys_asmreq_stub.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/golang.org/x/net/ipv4/sys_asmreq_stub.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/ipv4/sys_asmreqn.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/golang.org/x/net/ipv4/sys_asmreqn.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/ipv4/sys_asmreqn_stub.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/golang.org/x/net/ipv4/sys_asmreqn_stub.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/ipv4/sys_bpf.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/golang.org/x/net/ipv4/sys_bpf.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/ipv4/sys_bpf_stub.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/golang.org/x/net/ipv4/sys_bpf_stub.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/ipv4/sys_bsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/golang.org/x/net/ipv4/sys_bsd.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/ipv4/sys_darwin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/golang.org/x/net/ipv4/sys_darwin.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/ipv4/sys_dragonfly.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/golang.org/x/net/ipv4/sys_dragonfly.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/ipv4/sys_freebsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/golang.org/x/net/ipv4/sys_freebsd.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/ipv4/sys_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/golang.org/x/net/ipv4/sys_linux.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/ipv4/sys_solaris.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/golang.org/x/net/ipv4/sys_solaris.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/ipv4/sys_ssmreq.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/golang.org/x/net/ipv4/sys_ssmreq.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/ipv4/sys_ssmreq_stub.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/golang.org/x/net/ipv4/sys_ssmreq_stub.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/ipv4/sys_stub.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/golang.org/x/net/ipv4/sys_stub.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/ipv4/sys_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/golang.org/x/net/ipv4/sys_windows.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/ipv4/unicast_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/golang.org/x/net/ipv4/unicast_test.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/ipv4/zsys_darwin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/golang.org/x/net/ipv4/zsys_darwin.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/ipv4/zsys_dragonfly.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/golang.org/x/net/ipv4/zsys_dragonfly.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/ipv4/zsys_freebsd_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/golang.org/x/net/ipv4/zsys_freebsd_386.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/ipv4/zsys_freebsd_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/golang.org/x/net/ipv4/zsys_freebsd_arm.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/ipv4/zsys_linux_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/golang.org/x/net/ipv4/zsys_linux_386.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/ipv4/zsys_linux_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/golang.org/x/net/ipv4/zsys_linux_amd64.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/ipv4/zsys_linux_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/golang.org/x/net/ipv4/zsys_linux_arm.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/ipv4/zsys_linux_arm64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/golang.org/x/net/ipv4/zsys_linux_arm64.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/ipv4/zsys_linux_mips.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/golang.org/x/net/ipv4/zsys_linux_mips.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/ipv4/zsys_linux_mips64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/golang.org/x/net/ipv4/zsys_linux_mips64.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/ipv4/zsys_linux_mipsle.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/golang.org/x/net/ipv4/zsys_linux_mipsle.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/ipv4/zsys_linux_ppc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/golang.org/x/net/ipv4/zsys_linux_ppc.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/ipv4/zsys_linux_ppc64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/golang.org/x/net/ipv4/zsys_linux_ppc64.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/ipv4/zsys_netbsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/golang.org/x/net/ipv4/zsys_netbsd.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/ipv4/zsys_openbsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/golang.org/x/net/ipv4/zsys_openbsd.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/ipv4/zsys_solaris.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/golang.org/x/net/ipv4/zsys_solaris.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/ipv6/batch.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/golang.org/x/net/ipv6/batch.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/ipv6/bpf_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/golang.org/x/net/ipv6/bpf_test.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/ipv6/control.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/golang.org/x/net/ipv6/control.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/ipv6/control_stub.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/golang.org/x/net/ipv6/control_stub.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/ipv6/control_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/golang.org/x/net/ipv6/control_unix.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/ipv6/control_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/golang.org/x/net/ipv6/control_windows.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/ipv6/defs_darwin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/golang.org/x/net/ipv6/defs_darwin.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/ipv6/defs_dragonfly.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/golang.org/x/net/ipv6/defs_dragonfly.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/ipv6/defs_freebsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/golang.org/x/net/ipv6/defs_freebsd.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/ipv6/defs_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/golang.org/x/net/ipv6/defs_linux.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/ipv6/defs_netbsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/golang.org/x/net/ipv6/defs_netbsd.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/ipv6/defs_openbsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/golang.org/x/net/ipv6/defs_openbsd.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/ipv6/defs_solaris.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/golang.org/x/net/ipv6/defs_solaris.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/ipv6/dgramopt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/golang.org/x/net/ipv6/dgramopt.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/ipv6/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/golang.org/x/net/ipv6/doc.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/ipv6/endpoint.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/golang.org/x/net/ipv6/endpoint.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/ipv6/example_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/golang.org/x/net/ipv6/example_test.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/ipv6/gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/golang.org/x/net/ipv6/gen.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/ipv6/genericopt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/golang.org/x/net/ipv6/genericopt.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/ipv6/header.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/golang.org/x/net/ipv6/header.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/ipv6/header_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/golang.org/x/net/ipv6/header_test.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/ipv6/helper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/golang.org/x/net/ipv6/helper.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/ipv6/iana.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/golang.org/x/net/ipv6/iana.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/ipv6/icmp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/golang.org/x/net/ipv6/icmp.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/ipv6/icmp_bsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/golang.org/x/net/ipv6/icmp_bsd.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/ipv6/icmp_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/golang.org/x/net/ipv6/icmp_linux.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/ipv6/icmp_solaris.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/golang.org/x/net/ipv6/icmp_solaris.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/ipv6/icmp_stub.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/golang.org/x/net/ipv6/icmp_stub.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/ipv6/icmp_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/golang.org/x/net/ipv6/icmp_test.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/ipv6/icmp_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/golang.org/x/net/ipv6/icmp_windows.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/ipv6/multicast_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/golang.org/x/net/ipv6/multicast_test.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/ipv6/payload.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/golang.org/x/net/ipv6/payload.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/ipv6/payload_cmsg.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/golang.org/x/net/ipv6/payload_cmsg.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/ipv6/payload_nocmsg.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/golang.org/x/net/ipv6/payload_nocmsg.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/ipv6/readwrite_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/golang.org/x/net/ipv6/readwrite_test.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/ipv6/sockopt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/golang.org/x/net/ipv6/sockopt.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/ipv6/sockopt_posix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/golang.org/x/net/ipv6/sockopt_posix.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/ipv6/sockopt_stub.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/golang.org/x/net/ipv6/sockopt_stub.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/ipv6/sockopt_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/golang.org/x/net/ipv6/sockopt_test.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/ipv6/sys_asmreq.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/golang.org/x/net/ipv6/sys_asmreq.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/ipv6/sys_asmreq_stub.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/golang.org/x/net/ipv6/sys_asmreq_stub.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/ipv6/sys_bpf.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/golang.org/x/net/ipv6/sys_bpf.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/ipv6/sys_bpf_stub.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/golang.org/x/net/ipv6/sys_bpf_stub.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/ipv6/sys_bsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/golang.org/x/net/ipv6/sys_bsd.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/ipv6/sys_darwin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/golang.org/x/net/ipv6/sys_darwin.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/ipv6/sys_freebsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/golang.org/x/net/ipv6/sys_freebsd.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/ipv6/sys_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/golang.org/x/net/ipv6/sys_linux.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/ipv6/sys_solaris.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/golang.org/x/net/ipv6/sys_solaris.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/ipv6/sys_ssmreq.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/golang.org/x/net/ipv6/sys_ssmreq.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/ipv6/sys_ssmreq_stub.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/golang.org/x/net/ipv6/sys_ssmreq_stub.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/ipv6/sys_stub.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/golang.org/x/net/ipv6/sys_stub.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/ipv6/sys_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/golang.org/x/net/ipv6/sys_windows.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/ipv6/unicast_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/golang.org/x/net/ipv6/unicast_test.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/ipv6/zsys_darwin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/golang.org/x/net/ipv6/zsys_darwin.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/ipv6/zsys_dragonfly.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/golang.org/x/net/ipv6/zsys_dragonfly.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/ipv6/zsys_linux_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/golang.org/x/net/ipv6/zsys_linux_386.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/ipv6/zsys_linux_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/golang.org/x/net/ipv6/zsys_linux_arm.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/ipv6/zsys_linux_mips.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/golang.org/x/net/ipv6/zsys_linux_mips.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/ipv6/zsys_linux_ppc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/golang.org/x/net/ipv6/zsys_linux_ppc.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/ipv6/zsys_netbsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/golang.org/x/net/ipv6/zsys_netbsd.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/ipv6/zsys_openbsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/golang.org/x/net/ipv6/zsys_openbsd.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/ipv6/zsys_solaris.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/golang.org/x/net/ipv6/zsys_solaris.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/lex/httplex/httplex.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/golang.org/x/net/lex/httplex/httplex.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/lif/address.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/golang.org/x/net/lif/address.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/lif/address_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/golang.org/x/net/lif/address_test.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/lif/binary.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/golang.org/x/net/lif/binary.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/lif/defs_solaris.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/golang.org/x/net/lif/defs_solaris.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/lif/lif.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/golang.org/x/net/lif/lif.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/lif/link.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/golang.org/x/net/lif/link.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/lif/link_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/golang.org/x/net/lif/link_test.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/lif/sys.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/golang.org/x/net/lif/sys.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/lif/sys_solaris_amd64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/golang.org/x/net/lif/sys_solaris_amd64.s -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/lif/syscall.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/golang.org/x/net/lif/syscall.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/nettest/conntest.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/golang.org/x/net/nettest/conntest.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/netutil/listen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/golang.org/x/net/netutil/listen.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/netutil/listen_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/golang.org/x/net/netutil/listen_test.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/proxy/direct.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/golang.org/x/net/proxy/direct.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/proxy/per_host.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/golang.org/x/net/proxy/per_host.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/proxy/per_host_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/golang.org/x/net/proxy/per_host_test.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/proxy/proxy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/golang.org/x/net/proxy/proxy.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/proxy/proxy_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/golang.org/x/net/proxy/proxy_test.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/proxy/socks5.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/golang.org/x/net/proxy/socks5.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/publicsuffix/gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/golang.org/x/net/publicsuffix/gen.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/publicsuffix/list.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/golang.org/x/net/publicsuffix/list.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/publicsuffix/table.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/golang.org/x/net/publicsuffix/table.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/route/address.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/golang.org/x/net/route/address.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/route/address_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/golang.org/x/net/route/address_test.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/route/binary.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/golang.org/x/net/route/binary.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/route/defs_darwin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/golang.org/x/net/route/defs_darwin.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/route/defs_dragonfly.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/golang.org/x/net/route/defs_dragonfly.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/route/defs_freebsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/golang.org/x/net/route/defs_freebsd.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/route/defs_netbsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/golang.org/x/net/route/defs_netbsd.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/route/defs_openbsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/golang.org/x/net/route/defs_openbsd.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/route/interface.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/golang.org/x/net/route/interface.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/route/message.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/golang.org/x/net/route/message.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/route/message_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/golang.org/x/net/route/message_test.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/route/route.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/golang.org/x/net/route/route.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/route/route_classic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/golang.org/x/net/route/route_classic.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/route/route_openbsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/golang.org/x/net/route/route_openbsd.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/route/route_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/golang.org/x/net/route/route_test.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/route/sys.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/golang.org/x/net/route/sys.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/route/sys_darwin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/golang.org/x/net/route/sys_darwin.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/route/sys_dragonfly.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/golang.org/x/net/route/sys_dragonfly.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/route/sys_freebsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/golang.org/x/net/route/sys_freebsd.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/route/sys_netbsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/golang.org/x/net/route/sys_netbsd.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/route/sys_openbsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/golang.org/x/net/route/sys_openbsd.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/route/syscall.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/golang.org/x/net/route/syscall.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/route/zsys_darwin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/golang.org/x/net/route/zsys_darwin.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/route/zsys_dragonfly.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/golang.org/x/net/route/zsys_dragonfly.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/route/zsys_netbsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/golang.org/x/net/route/zsys_netbsd.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/route/zsys_openbsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/golang.org/x/net/route/zsys_openbsd.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/trace/events.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/golang.org/x/net/trace/events.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/trace/histogram.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/golang.org/x/net/trace/histogram.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/trace/histogram_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/golang.org/x/net/trace/histogram_test.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/trace/trace.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/golang.org/x/net/trace/trace.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/trace/trace_go16.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/golang.org/x/net/trace/trace_go16.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/trace/trace_go17.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/golang.org/x/net/trace/trace_go17.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/trace/trace_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/golang.org/x/net/trace/trace_test.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/webdav/file.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/golang.org/x/net/webdav/file.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/webdav/file_go1.6.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/golang.org/x/net/webdav/file_go1.6.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/webdav/file_go1.7.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/golang.org/x/net/webdav/file_go1.7.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/webdav/file_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/golang.org/x/net/webdav/file_test.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/webdav/if.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/golang.org/x/net/webdav/if.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/webdav/if_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/golang.org/x/net/webdav/if_test.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/webdav/lock.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/golang.org/x/net/webdav/lock.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/webdav/lock_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/golang.org/x/net/webdav/lock_test.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/webdav/prop.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/golang.org/x/net/webdav/prop.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/webdav/prop_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/golang.org/x/net/webdav/prop_test.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/webdav/webdav.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/golang.org/x/net/webdav/webdav.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/webdav/webdav_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/golang.org/x/net/webdav/webdav_test.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/webdav/xml.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/golang.org/x/net/webdav/xml.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/webdav/xml_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/golang.org/x/net/webdav/xml_test.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/websocket/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/golang.org/x/net/websocket/client.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/websocket/dial.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/golang.org/x/net/websocket/dial.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/websocket/dial_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/golang.org/x/net/websocket/dial_test.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/websocket/hybi.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/golang.org/x/net/websocket/hybi.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/websocket/hybi_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/golang.org/x/net/websocket/hybi_test.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/websocket/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/golang.org/x/net/websocket/server.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/websocket/websocket.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/golang.org/x/net/websocket/websocket.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/xsrftoken/xsrf.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/golang.org/x/net/xsrftoken/xsrf.go -------------------------------------------------------------------------------- /api/vendor/golang.org/x/net/xsrftoken/xsrf_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/golang.org/x/net/xsrftoken/xsrf_test.go -------------------------------------------------------------------------------- /api/vendor/gopkg.in/square/go-jose.v1/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/gopkg.in/square/go-jose.v1/.gitignore -------------------------------------------------------------------------------- /api/vendor/gopkg.in/square/go-jose.v1/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/gopkg.in/square/go-jose.v1/.travis.yml -------------------------------------------------------------------------------- /api/vendor/gopkg.in/square/go-jose.v1/BUG-BOUNTY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/gopkg.in/square/go-jose.v1/BUG-BOUNTY.md -------------------------------------------------------------------------------- /api/vendor/gopkg.in/square/go-jose.v1/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/gopkg.in/square/go-jose.v1/LICENSE -------------------------------------------------------------------------------- /api/vendor/gopkg.in/square/go-jose.v1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/gopkg.in/square/go-jose.v1/README.md -------------------------------------------------------------------------------- /api/vendor/gopkg.in/square/go-jose.v1/asymmetric.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/gopkg.in/square/go-jose.v1/asymmetric.go -------------------------------------------------------------------------------- /api/vendor/gopkg.in/square/go-jose.v1/crypter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/gopkg.in/square/go-jose.v1/crypter.go -------------------------------------------------------------------------------- /api/vendor/gopkg.in/square/go-jose.v1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/gopkg.in/square/go-jose.v1/doc.go -------------------------------------------------------------------------------- /api/vendor/gopkg.in/square/go-jose.v1/doc_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/gopkg.in/square/go-jose.v1/doc_test.go -------------------------------------------------------------------------------- /api/vendor/gopkg.in/square/go-jose.v1/encoding.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/gopkg.in/square/go-jose.v1/encoding.go -------------------------------------------------------------------------------- /api/vendor/gopkg.in/square/go-jose.v1/json/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/gopkg.in/square/go-jose.v1/json/LICENSE -------------------------------------------------------------------------------- /api/vendor/gopkg.in/square/go-jose.v1/json/tags.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/gopkg.in/square/go-jose.v1/json/tags.go -------------------------------------------------------------------------------- /api/vendor/gopkg.in/square/go-jose.v1/jwe.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/gopkg.in/square/go-jose.v1/jwe.go -------------------------------------------------------------------------------- /api/vendor/gopkg.in/square/go-jose.v1/jwe_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/gopkg.in/square/go-jose.v1/jwe_test.go -------------------------------------------------------------------------------- /api/vendor/gopkg.in/square/go-jose.v1/jwk.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/gopkg.in/square/go-jose.v1/jwk.go -------------------------------------------------------------------------------- /api/vendor/gopkg.in/square/go-jose.v1/jwk_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/gopkg.in/square/go-jose.v1/jwk_test.go -------------------------------------------------------------------------------- /api/vendor/gopkg.in/square/go-jose.v1/jws.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/gopkg.in/square/go-jose.v1/jws.go -------------------------------------------------------------------------------- /api/vendor/gopkg.in/square/go-jose.v1/jws_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/gopkg.in/square/go-jose.v1/jws_test.go -------------------------------------------------------------------------------- /api/vendor/gopkg.in/square/go-jose.v1/jwt/claims.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/gopkg.in/square/go-jose.v1/jwt/claims.go -------------------------------------------------------------------------------- /api/vendor/gopkg.in/square/go-jose.v1/jwt/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/gopkg.in/square/go-jose.v1/jwt/errors.go -------------------------------------------------------------------------------- /api/vendor/gopkg.in/square/go-jose.v1/jwt/jwt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/gopkg.in/square/go-jose.v1/jwt/jwt.go -------------------------------------------------------------------------------- /api/vendor/gopkg.in/square/go-jose.v1/shared.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/gopkg.in/square/go-jose.v1/shared.go -------------------------------------------------------------------------------- /api/vendor/gopkg.in/square/go-jose.v1/signing.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/gopkg.in/square/go-jose.v1/signing.go -------------------------------------------------------------------------------- /api/vendor/gopkg.in/square/go-jose.v1/symmetric.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/gopkg.in/square/go-jose.v1/symmetric.go -------------------------------------------------------------------------------- /api/vendor/gopkg.in/square/go-jose.v1/utils_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/gopkg.in/square/go-jose.v1/utils_test.go -------------------------------------------------------------------------------- /api/vendor/gopkg.in/square/go-jose.v2/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/gopkg.in/square/go-jose.v2/.gitignore -------------------------------------------------------------------------------- /api/vendor/gopkg.in/square/go-jose.v2/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/gopkg.in/square/go-jose.v2/.travis.yml -------------------------------------------------------------------------------- /api/vendor/gopkg.in/square/go-jose.v2/BUG-BOUNTY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/gopkg.in/square/go-jose.v2/BUG-BOUNTY.md -------------------------------------------------------------------------------- /api/vendor/gopkg.in/square/go-jose.v2/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/gopkg.in/square/go-jose.v2/LICENSE -------------------------------------------------------------------------------- /api/vendor/gopkg.in/square/go-jose.v2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/gopkg.in/square/go-jose.v2/README.md -------------------------------------------------------------------------------- /api/vendor/gopkg.in/square/go-jose.v2/asymmetric.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/gopkg.in/square/go-jose.v2/asymmetric.go -------------------------------------------------------------------------------- /api/vendor/gopkg.in/square/go-jose.v2/crypter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/gopkg.in/square/go-jose.v2/crypter.go -------------------------------------------------------------------------------- /api/vendor/gopkg.in/square/go-jose.v2/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/gopkg.in/square/go-jose.v2/doc.go -------------------------------------------------------------------------------- /api/vendor/gopkg.in/square/go-jose.v2/doc_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/gopkg.in/square/go-jose.v2/doc_test.go -------------------------------------------------------------------------------- /api/vendor/gopkg.in/square/go-jose.v2/encoding.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/gopkg.in/square/go-jose.v2/encoding.go -------------------------------------------------------------------------------- /api/vendor/gopkg.in/square/go-jose.v2/json/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/gopkg.in/square/go-jose.v2/json/LICENSE -------------------------------------------------------------------------------- /api/vendor/gopkg.in/square/go-jose.v2/json/tags.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/gopkg.in/square/go-jose.v2/json/tags.go -------------------------------------------------------------------------------- /api/vendor/gopkg.in/square/go-jose.v2/jwe.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/gopkg.in/square/go-jose.v2/jwe.go -------------------------------------------------------------------------------- /api/vendor/gopkg.in/square/go-jose.v2/jwe_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/gopkg.in/square/go-jose.v2/jwe_test.go -------------------------------------------------------------------------------- /api/vendor/gopkg.in/square/go-jose.v2/jwk.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/gopkg.in/square/go-jose.v2/jwk.go -------------------------------------------------------------------------------- /api/vendor/gopkg.in/square/go-jose.v2/jwk_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/gopkg.in/square/go-jose.v2/jwk_test.go -------------------------------------------------------------------------------- /api/vendor/gopkg.in/square/go-jose.v2/jws.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/gopkg.in/square/go-jose.v2/jws.go -------------------------------------------------------------------------------- /api/vendor/gopkg.in/square/go-jose.v2/jws_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/gopkg.in/square/go-jose.v2/jws_test.go -------------------------------------------------------------------------------- /api/vendor/gopkg.in/square/go-jose.v2/jwt/claims.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/gopkg.in/square/go-jose.v2/jwt/claims.go -------------------------------------------------------------------------------- /api/vendor/gopkg.in/square/go-jose.v2/jwt/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/gopkg.in/square/go-jose.v2/jwt/errors.go -------------------------------------------------------------------------------- /api/vendor/gopkg.in/square/go-jose.v2/jwt/jwt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/gopkg.in/square/go-jose.v2/jwt/jwt.go -------------------------------------------------------------------------------- /api/vendor/gopkg.in/square/go-jose.v2/shared.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/gopkg.in/square/go-jose.v2/shared.go -------------------------------------------------------------------------------- /api/vendor/gopkg.in/square/go-jose.v2/signing.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/gopkg.in/square/go-jose.v2/signing.go -------------------------------------------------------------------------------- /api/vendor/gopkg.in/square/go-jose.v2/symmetric.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/gopkg.in/square/go-jose.v2/symmetric.go -------------------------------------------------------------------------------- /api/vendor/gopkg.in/square/go-jose.v2/utils_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/api/vendor/gopkg.in/square/go-jose.v2/utils_test.go -------------------------------------------------------------------------------- /apiary.apib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/apiary.apib -------------------------------------------------------------------------------- /circle.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/circle.yml -------------------------------------------------------------------------------- /doc/project-report.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/doc/project-report.gif -------------------------------------------------------------------------------- /web/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/web/.env -------------------------------------------------------------------------------- /web/.env.production: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/web/.env.production -------------------------------------------------------------------------------- /web/.flowconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/web/.flowconfig -------------------------------------------------------------------------------- /web/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/web/.gitignore -------------------------------------------------------------------------------- /web/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/web/Makefile -------------------------------------------------------------------------------- /web/flow-typed/npm/auth0-lock_vx.x.x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/web/flow-typed/npm/auth0-lock_vx.x.x.js -------------------------------------------------------------------------------- /web/flow-typed/npm/flow-bin_v0.x.x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/web/flow-typed/npm/flow-bin_v0.x.x.js -------------------------------------------------------------------------------- /web/flow-typed/npm/material-ui-chip-input_vx.x.x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/web/flow-typed/npm/material-ui-chip-input_vx.x.x.js -------------------------------------------------------------------------------- /web/flow-typed/npm/material-ui_vx.x.x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/web/flow-typed/npm/material-ui_vx.x.x.js -------------------------------------------------------------------------------- /web/flow-typed/npm/moment_v2.x.x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/web/flow-typed/npm/moment_v2.x.x.js -------------------------------------------------------------------------------- /web/flow-typed/npm/react-redux_v5.x.x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/web/flow-typed/npm/react-redux_v5.x.x.js -------------------------------------------------------------------------------- /web/flow-typed/npm/react-router-dom_v4.x.x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/web/flow-typed/npm/react-router-dom_v4.x.x.js -------------------------------------------------------------------------------- /web/flow-typed/npm/react-router_v4.x.x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/web/flow-typed/npm/react-router_v4.x.x.js -------------------------------------------------------------------------------- /web/flow-typed/npm/react-scripts_vx.x.x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/web/flow-typed/npm/react-scripts_vx.x.x.js -------------------------------------------------------------------------------- /web/flow-typed/npm/react-tap-event-plugin_vx.x.x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/web/flow-typed/npm/react-tap-event-plugin_vx.x.x.js -------------------------------------------------------------------------------- /web/flow-typed/npm/redux-api-middleware_vx.x.x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/web/flow-typed/npm/redux-api-middleware_vx.x.x.js -------------------------------------------------------------------------------- /web/flow-typed/npm/redux-thunk_vx.x.x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/web/flow-typed/npm/redux-thunk_vx.x.x.js -------------------------------------------------------------------------------- /web/flow-typed/npm/redux_v3.x.x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/web/flow-typed/npm/redux_v3.x.x.js -------------------------------------------------------------------------------- /web/flow-typed/npm/roboto-fontface_vx.x.x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/web/flow-typed/npm/roboto-fontface_vx.x.x.js -------------------------------------------------------------------------------- /web/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/web/package.json -------------------------------------------------------------------------------- /web/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/web/public/favicon.ico -------------------------------------------------------------------------------- /web/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/web/public/index.html -------------------------------------------------------------------------------- /web/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/web/public/manifest.json -------------------------------------------------------------------------------- /web/src/App/__tests__/presenter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/web/src/App/__tests__/presenter.js -------------------------------------------------------------------------------- /web/src/App/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/web/src/App/index.css -------------------------------------------------------------------------------- /web/src/App/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/web/src/App/index.js -------------------------------------------------------------------------------- /web/src/App/presenter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/web/src/App/presenter.js -------------------------------------------------------------------------------- /web/src/Auth/__tests__/presenter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/web/src/Auth/__tests__/presenter.js -------------------------------------------------------------------------------- /web/src/Auth/__tests__/reducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/web/src/Auth/__tests__/reducer.js -------------------------------------------------------------------------------- /web/src/Auth/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/web/src/Auth/index.css -------------------------------------------------------------------------------- /web/src/Auth/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/web/src/Auth/index.js -------------------------------------------------------------------------------- /web/src/Auth/presenter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/web/src/Auth/presenter.js -------------------------------------------------------------------------------- /web/src/Auth/reducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/web/src/Auth/reducer.js -------------------------------------------------------------------------------- /web/src/Common/ChallengeConfirmationDialog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/web/src/Common/ChallengeConfirmationDialog.js -------------------------------------------------------------------------------- /web/src/Common/ClipboardInput.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/web/src/Common/ClipboardInput.js -------------------------------------------------------------------------------- /web/src/Common/Loading.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/web/src/Common/Loading.js -------------------------------------------------------------------------------- /web/src/Common/Report/Form.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/web/src/Common/Report/Form.js -------------------------------------------------------------------------------- /web/src/Common/Report/Summary.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/web/src/Common/Report/Summary.js -------------------------------------------------------------------------------- /web/src/Common/Report/TagReport.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/web/src/Common/Report/TagReport.js -------------------------------------------------------------------------------- /web/src/Common/Report/form.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/web/src/Common/Report/form.css -------------------------------------------------------------------------------- /web/src/Common/Report/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/web/src/Common/Report/index.css -------------------------------------------------------------------------------- /web/src/Common/Report/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/web/src/Common/Report/index.js -------------------------------------------------------------------------------- /web/src/Common/Report/summary.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/web/src/Common/Report/summary.css -------------------------------------------------------------------------------- /web/src/Common/Report/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/web/src/Common/Report/utils.js -------------------------------------------------------------------------------- /web/src/Common/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/web/src/Common/style.css -------------------------------------------------------------------------------- /web/src/Errors/__tests__/presenter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/web/src/Errors/__tests__/presenter.js -------------------------------------------------------------------------------- /web/src/Errors/__tests__/reducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/web/src/Errors/__tests__/reducer.js -------------------------------------------------------------------------------- /web/src/Errors/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/web/src/Errors/index.js -------------------------------------------------------------------------------- /web/src/Errors/presenter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/web/src/Errors/presenter.js -------------------------------------------------------------------------------- /web/src/Errors/reducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/web/src/Errors/reducer.js -------------------------------------------------------------------------------- /web/src/Home/NotConnected.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/web/src/Home/NotConnected.js -------------------------------------------------------------------------------- /web/src/Home/__tests__/NotConnected.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/web/src/Home/__tests__/NotConnected.js -------------------------------------------------------------------------------- /web/src/Home/__tests__/presenter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/web/src/Home/__tests__/presenter.js -------------------------------------------------------------------------------- /web/src/Home/img/crick_bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/web/src/Home/img/crick_bg.jpg -------------------------------------------------------------------------------- /web/src/Home/img/logo-crick.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/web/src/Home/img/logo-crick.png -------------------------------------------------------------------------------- /web/src/Home/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/web/src/Home/index.css -------------------------------------------------------------------------------- /web/src/Home/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/web/src/Home/index.js -------------------------------------------------------------------------------- /web/src/Home/presenter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/web/src/Home/presenter.js -------------------------------------------------------------------------------- /web/src/ProjectReport/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/web/src/ProjectReport/index.css -------------------------------------------------------------------------------- /web/src/ProjectReport/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/web/src/ProjectReport/index.js -------------------------------------------------------------------------------- /web/src/ProjectReport/presenter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/web/src/ProjectReport/presenter.js -------------------------------------------------------------------------------- /web/src/ProjectReport/reducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/web/src/ProjectReport/reducer.js -------------------------------------------------------------------------------- /web/src/Projects/reducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/web/src/Projects/reducer.js -------------------------------------------------------------------------------- /web/src/ProjectsList/Empty.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/web/src/ProjectsList/Empty.js -------------------------------------------------------------------------------- /web/src/ProjectsList/Project.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/web/src/ProjectsList/Project.js -------------------------------------------------------------------------------- /web/src/ProjectsList/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/web/src/ProjectsList/index.css -------------------------------------------------------------------------------- /web/src/ProjectsList/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/web/src/ProjectsList/index.js -------------------------------------------------------------------------------- /web/src/ProjectsList/presenter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/web/src/ProjectsList/presenter.js -------------------------------------------------------------------------------- /web/src/Routing/NotFound.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/web/src/Routing/NotFound.js -------------------------------------------------------------------------------- /web/src/Routing/PrivateRoute.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/web/src/Routing/PrivateRoute.js -------------------------------------------------------------------------------- /web/src/Routing/style.css: -------------------------------------------------------------------------------- 1 | .NotFound { 2 | text-align: center; 3 | } 4 | -------------------------------------------------------------------------------- /web/src/TeamReport/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/web/src/TeamReport/index.css -------------------------------------------------------------------------------- /web/src/TeamReport/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/web/src/TeamReport/index.js -------------------------------------------------------------------------------- /web/src/TeamReport/presenter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/web/src/TeamReport/presenter.js -------------------------------------------------------------------------------- /web/src/TeamReport/reducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/web/src/TeamReport/reducer.js -------------------------------------------------------------------------------- /web/src/Teams/Empty.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/web/src/Teams/Empty.js -------------------------------------------------------------------------------- /web/src/Teams/Form.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/web/src/Teams/Form.js -------------------------------------------------------------------------------- /web/src/Teams/List.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/web/src/Teams/List.js -------------------------------------------------------------------------------- /web/src/Teams/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/web/src/Teams/index.css -------------------------------------------------------------------------------- /web/src/Teams/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/web/src/Teams/index.js -------------------------------------------------------------------------------- /web/src/Teams/presenter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/web/src/Teams/presenter.js -------------------------------------------------------------------------------- /web/src/Teams/reducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/web/src/Teams/reducer.js -------------------------------------------------------------------------------- /web/src/TeamsList/Team.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/web/src/TeamsList/Team.js -------------------------------------------------------------------------------- /web/src/TeamsList/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/web/src/TeamsList/index.css -------------------------------------------------------------------------------- /web/src/TeamsList/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/web/src/TeamsList/index.js -------------------------------------------------------------------------------- /web/src/TeamsList/presenter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/web/src/TeamsList/presenter.js -------------------------------------------------------------------------------- /web/src/__tests__/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/web/src/__tests__/utils.js -------------------------------------------------------------------------------- /web/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/web/src/index.css -------------------------------------------------------------------------------- /web/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/web/src/index.js -------------------------------------------------------------------------------- /web/src/middleware/apiAuthToken.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/web/src/middleware/apiAuthToken.js -------------------------------------------------------------------------------- /web/src/middleware/apiError.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/web/src/middleware/apiError.js -------------------------------------------------------------------------------- /web/src/registerServiceWorker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/web/src/registerServiceWorker.js -------------------------------------------------------------------------------- /web/src/setupTests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/web/src/setupTests.js -------------------------------------------------------------------------------- /web/src/shared/emptyStyle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/web/src/shared/emptyStyle.js -------------------------------------------------------------------------------- /web/src/store/configureStore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/web/src/store/configureStore.js -------------------------------------------------------------------------------- /web/src/store/rootReducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/web/src/store/rootReducer.js -------------------------------------------------------------------------------- /web/src/types.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/web/src/types.js -------------------------------------------------------------------------------- /web/src/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/web/src/utils.js -------------------------------------------------------------------------------- /web/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TailorDev/crick/HEAD/web/yarn.lock --------------------------------------------------------------------------------