├── .gitattributes ├── .gitignore ├── Makefile ├── README.md ├── bitesla-config.ini ├── bitesla-server ├── README.md ├── bitesla.sh ├── docker-compose.yml ├── mysql │ └── conf │ │ ├── my.cnf │ │ └── my.cnf_bck ├── nsq │ └── .gitkeep └── redis │ └── conf │ └── redis.conf ├── bitesla.sh ├── common ├── constants │ ├── omit.go │ └── redis_key.go ├── errs │ ├── code.go │ ├── errors.go │ └── msg.go ├── hystrix │ ├── hystrix.go │ └── hystrix_test.go ├── iniconfig │ ├── conf.go │ └── conf_test.go ├── logger │ ├── daterot │ │ ├── daterot.go │ │ ├── daterot_test.go │ │ └── vars.go │ └── logger.go ├── net │ ├── http │ │ ├── HttpUtils.go │ │ └── httpclient.go │ └── websocket │ │ ├── websocket.go │ │ └── websocket_test.go ├── util │ ├── amqp │ │ ├── amqp.go │ │ └── log.go │ ├── cache │ │ └── redis.go │ ├── common.go │ ├── convert.go │ ├── crypt │ │ ├── aes.go │ │ ├── hmac.go │ │ ├── ll.go │ │ ├── md5.go │ │ └── rsa.go │ ├── email │ │ └── email.go │ ├── file │ │ └── file.go │ ├── googauth │ │ └── googauth.go │ ├── idgenerate │ │ └── id.go │ ├── jpush │ │ └── jpush.go │ ├── jwt │ │ └── jwt.go │ ├── math │ │ └── float │ │ │ └── float.go │ ├── mysql │ │ └── converter │ │ │ ├── cmd │ │ │ ├── cli.go │ │ │ ├── make.sh │ │ │ └── readme.md │ │ │ ├── table2struct.go │ │ │ └── version.go │ ├── pay │ │ └── pay.go │ ├── slice │ │ └── slice.go │ ├── string.go │ ├── string_test.go │ ├── stringutl │ │ └── base_util.go │ ├── uuid_token_util.go │ └── uuid_token_util_test.go └── vo │ └── result.go ├── docker-compose.yml ├── img ├── 1.png ├── 10.jpg ├── 11.jpg ├── 2.png ├── 3.png ├── 4.png ├── 5.jpg ├── 6.jpg ├── 7.jpg ├── 8.jpg └── 9.jpg └── service ├── service-api ├── Dockerfile ├── Makefile ├── README.md ├── conf │ ├── bitesla-config.ini │ ├── bitesla-env-dev.ini │ ├── bitesla-env-prod.ini │ ├── bitesla-env-test.ini │ └── conf.go ├── constants │ └── constants.go ├── db │ └── db.go ├── docs │ ├── docs.go │ └── swagger │ │ ├── swagger.json │ │ └── swagger.yaml ├── helper │ └── rsa_helper.go ├── main.go ├── midware │ └── jwt │ │ ├── jwt.go │ │ └── jwt_test.go ├── router │ ├── exchange_router.go │ ├── model │ │ ├── exchange_Depth.go │ │ ├── exchange_account.go │ │ ├── exchange_cancel_order.go │ │ ├── exchange_detail.go │ │ ├── exchange_info.go │ │ ├── exchange_kline.go │ │ ├── exchange_list.go │ │ ├── exchange_one_order.go │ │ ├── exchange_order_history.go │ │ ├── exchange_order_place.go │ │ ├── exchange_ticker.go │ │ ├── exchange_trades.go │ │ ├── exchange_unfinish_orders.go │ │ ├── strategy_detail.go │ │ ├── strategy_list.go │ │ ├── strategy_put.go │ │ ├── trader_detail.go │ │ ├── trader_list.go │ │ ├── trader_put.go │ │ ├── trader_switch.go │ │ ├── trader_update_status.go │ │ ├── user_email_login.go │ │ ├── user_email_register.go │ │ ├── user_phone_login.go │ │ └── user_phone_register.go │ ├── router.go │ ├── strategy_router.go │ ├── swag_router.go │ ├── trader_router.go │ └── user_router.go └── vendor │ ├── github.com │ ├── PuerkitoBio │ │ ├── purell │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ └── purell.go │ │ └── urlesc │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ └── urlesc.go │ ├── alecthomas │ │ └── template │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── doc.go │ │ │ ├── exec.go │ │ │ ├── funcs.go │ │ │ ├── helper.go │ │ │ ├── parse │ │ │ ├── lex.go │ │ │ ├── node.go │ │ │ └── parse.go │ │ │ └── template.go │ ├── armon │ │ └── go-metrics │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── const_unix.go │ │ │ ├── const_windows.go │ │ │ ├── inmem.go │ │ │ ├── inmem_endpoint.go │ │ │ ├── inmem_signal.go │ │ │ ├── metrics.go │ │ │ ├── sink.go │ │ │ ├── start.go │ │ │ ├── statsd.go │ │ │ └── statsite.go │ ├── campoy │ │ └── embedmd │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── embedmd │ │ │ ├── command.go │ │ │ ├── content.go │ │ │ ├── embedmd.go │ │ │ └── parser.go │ │ │ └── main.go │ ├── client9 │ │ └── misspell │ │ │ ├── Dockerfile │ │ │ ├── Gopkg.lock │ │ │ ├── Gopkg.toml │ │ │ ├── LICENSE │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── RELEASE-HOWTO.md │ │ │ ├── ascii.go │ │ │ ├── case.go │ │ │ ├── cmd │ │ │ └── misspell │ │ │ │ └── main.go │ │ │ ├── goreleaser.yml │ │ │ ├── install-misspell.sh │ │ │ ├── legal.go │ │ │ ├── mime.go │ │ │ ├── notwords.go │ │ │ ├── replace.go │ │ │ ├── stringreplacer.go │ │ │ ├── stringreplacer_test.gox │ │ │ ├── url.go │ │ │ └── words.go │ ├── dgrijalva │ │ └── jwt-go │ │ │ ├── LICENSE │ │ │ ├── MIGRATION_GUIDE.md │ │ │ ├── README.md │ │ │ ├── VERSION_HISTORY.md │ │ │ ├── claims.go │ │ │ ├── doc.go │ │ │ ├── ecdsa.go │ │ │ ├── ecdsa_utils.go │ │ │ ├── errors.go │ │ │ ├── hmac.go │ │ │ ├── map_claims.go │ │ │ ├── none.go │ │ │ ├── parser.go │ │ │ ├── rsa.go │ │ │ ├── rsa_pss.go │ │ │ ├── rsa_utils.go │ │ │ ├── signing_method.go │ │ │ └── token.go │ ├── dustin │ │ └── go-broadcast │ │ │ ├── LICENSE │ │ │ ├── README.markdown │ │ │ ├── broadcaster.go │ │ │ └── mux_observer.go │ ├── garyburd │ │ └── redigo │ │ │ ├── LICENSE │ │ │ ├── internal │ │ │ └── commandinfo.go │ │ │ └── redis │ │ │ ├── conn.go │ │ │ ├── doc.go │ │ │ ├── go16.go │ │ │ ├── go17.go │ │ │ ├── go18.go │ │ │ ├── log.go │ │ │ ├── pool.go │ │ │ ├── pool17.go │ │ │ ├── pubsub.go │ │ │ ├── redis.go │ │ │ ├── reply.go │ │ │ ├── scan.go │ │ │ └── script.go │ ├── gin-contrib │ │ └── sse │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── sse-decoder.go │ │ │ ├── sse-encoder.go │ │ │ └── writer.go │ ├── gin-gonic │ │ ├── autotls │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── autotls.go │ │ │ └── doc.go │ │ └── gin │ │ │ ├── AUTHORS.md │ │ │ ├── BENCHMARKS.md │ │ │ ├── CHANGELOG.md │ │ │ ├── CODE_OF_CONDUCT.md │ │ │ ├── CONTRIBUTING.md │ │ │ ├── LICENSE │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── auth.go │ │ │ ├── binding │ │ │ ├── binding.go │ │ │ ├── default_validator.go │ │ │ ├── form.go │ │ │ ├── form_mapping.go │ │ │ ├── json.go │ │ │ ├── msgpack.go │ │ │ ├── protobuf.go │ │ │ ├── query.go │ │ │ └── xml.go │ │ │ ├── codecov.yml │ │ │ ├── context.go │ │ │ ├── context_17.go │ │ │ ├── context_appengine.go │ │ │ ├── debug.go │ │ │ ├── deprecated.go │ │ │ ├── doc.go │ │ │ ├── errors.go │ │ │ ├── fs.go │ │ │ ├── gin.go │ │ │ ├── go.mod │ │ │ ├── go.sum │ │ │ ├── internal │ │ │ └── json │ │ │ │ ├── json.go │ │ │ │ └── jsoniter.go │ │ │ ├── logger.go │ │ │ ├── mode.go │ │ │ ├── path.go │ │ │ ├── recovery.go │ │ │ ├── render │ │ │ ├── data.go │ │ │ ├── html.go │ │ │ ├── json.go │ │ │ ├── json_17.go │ │ │ ├── msgpack.go │ │ │ ├── protobuf.go │ │ │ ├── reader.go │ │ │ ├── redirect.go │ │ │ ├── render.go │ │ │ ├── text.go │ │ │ ├── xml.go │ │ │ └── yaml.go │ │ │ ├── response_writer.go │ │ │ ├── response_writer_1.7.go │ │ │ ├── response_writer_1.8.go │ │ │ ├── routergroup.go │ │ │ ├── test_helpers.go │ │ │ ├── tools.go │ │ │ ├── tree.go │ │ │ ├── utils.go │ │ │ ├── version.go │ │ │ └── wercker.yml │ ├── go-log │ │ └── log │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── log.go │ │ │ └── log │ │ │ └── log.go │ ├── go-openapi │ │ ├── jsonpointer │ │ │ ├── CODE_OF_CONDUCT.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── go.mod │ │ │ ├── go.sum │ │ │ └── pointer.go │ │ ├── jsonreference │ │ │ ├── CODE_OF_CONDUCT.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── go.mod │ │ │ ├── go.sum │ │ │ └── reference.go │ │ ├── spec │ │ │ ├── CODE_OF_CONDUCT.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── bindata.go │ │ │ ├── contact_info.go │ │ │ ├── debug.go │ │ │ ├── expander.go │ │ │ ├── external_docs.go │ │ │ ├── go.mod │ │ │ ├── go.sum │ │ │ ├── header.go │ │ │ ├── info.go │ │ │ ├── items.go │ │ │ ├── license.go │ │ │ ├── operation.go │ │ │ ├── parameter.go │ │ │ ├── path_item.go │ │ │ ├── paths.go │ │ │ ├── ref.go │ │ │ ├── response.go │ │ │ ├── responses.go │ │ │ ├── schema.go │ │ │ ├── security_scheme.go │ │ │ ├── spec.go │ │ │ ├── swagger.go │ │ │ ├── tag.go │ │ │ └── xml_object.go │ │ └── swag │ │ │ ├── CODE_OF_CONDUCT.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── convert.go │ │ │ ├── convert_types.go │ │ │ ├── doc.go │ │ │ ├── go.mod │ │ │ ├── go.sum │ │ │ ├── json.go │ │ │ ├── loading.go │ │ │ ├── net.go │ │ │ ├── path.go │ │ │ ├── post_go18.go │ │ │ ├── post_go19.go │ │ │ ├── pre_go18.go │ │ │ ├── pre_go19.go │ │ │ ├── util.go │ │ │ └── yaml.go │ ├── go-sql-driver │ │ └── mysql │ │ │ ├── AUTHORS │ │ │ ├── CHANGELOG.md │ │ │ ├── CONTRIBUTING.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── appengine.go │ │ │ ├── auth.go │ │ │ ├── buffer.go │ │ │ ├── collations.go │ │ │ ├── connection.go │ │ │ ├── const.go │ │ │ ├── driver.go │ │ │ ├── dsn.go │ │ │ ├── errors.go │ │ │ ├── fields.go │ │ │ ├── infile.go │ │ │ ├── packets.go │ │ │ ├── result.go │ │ │ ├── rows.go │ │ │ ├── statement.go │ │ │ ├── transaction.go │ │ │ └── utils.go │ ├── golang │ │ └── protobuf │ │ │ ├── LICENSE │ │ │ ├── proto │ │ │ ├── clone.go │ │ │ ├── decode.go │ │ │ ├── deprecated.go │ │ │ ├── discard.go │ │ │ ├── encode.go │ │ │ ├── equal.go │ │ │ ├── extensions.go │ │ │ ├── lib.go │ │ │ ├── message_set.go │ │ │ ├── pointer_reflect.go │ │ │ ├── pointer_unsafe.go │ │ │ ├── properties.go │ │ │ ├── table_marshal.go │ │ │ ├── table_merge.go │ │ │ ├── table_unmarshal.go │ │ │ ├── text.go │ │ │ └── text_parser.go │ │ │ └── ptypes │ │ │ ├── any.go │ │ │ ├── any │ │ │ ├── any.pb.go │ │ │ └── any.proto │ │ │ ├── doc.go │ │ │ ├── duration.go │ │ │ ├── duration │ │ │ ├── duration.pb.go │ │ │ └── duration.proto │ │ │ ├── timestamp.go │ │ │ └── timestamp │ │ │ ├── timestamp.pb.go │ │ │ └── timestamp.proto │ ├── google │ │ └── uuid │ │ │ ├── CONTRIBUTING.md │ │ │ ├── CONTRIBUTORS │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── dce.go │ │ │ ├── doc.go │ │ │ ├── go.mod │ │ │ ├── hash.go │ │ │ ├── marshal.go │ │ │ ├── node.go │ │ │ ├── node_js.go │ │ │ ├── node_net.go │ │ │ ├── sql.go │ │ │ ├── time.go │ │ │ ├── util.go │ │ │ ├── uuid.go │ │ │ ├── version1.go │ │ │ └── version4.go │ ├── gorilla │ │ └── websocket │ │ │ ├── AUTHORS │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── client.go │ │ │ ├── client_clone.go │ │ │ ├── client_clone_legacy.go │ │ │ ├── compression.go │ │ │ ├── conn.go │ │ │ ├── conn_write.go │ │ │ ├── conn_write_legacy.go │ │ │ ├── doc.go │ │ │ ├── json.go │ │ │ ├── mask.go │ │ │ ├── mask_safe.go │ │ │ ├── prepared.go │ │ │ ├── proxy.go │ │ │ ├── server.go │ │ │ ├── trace.go │ │ │ ├── trace_17.go │ │ │ ├── util.go │ │ │ └── x_net_proxy.go │ ├── hashicorp │ │ ├── consul │ │ │ ├── LICENSE │ │ │ ├── NOTICE.md │ │ │ ├── api │ │ │ │ ├── README.md │ │ │ │ ├── acl.go │ │ │ │ ├── agent.go │ │ │ │ ├── api.go │ │ │ │ ├── catalog.go │ │ │ │ ├── connect.go │ │ │ │ ├── connect_ca.go │ │ │ │ ├── connect_intention.go │ │ │ │ ├── coordinate.go │ │ │ │ ├── event.go │ │ │ │ ├── health.go │ │ │ │ ├── kv.go │ │ │ │ ├── lock.go │ │ │ │ ├── operator.go │ │ │ │ ├── operator_area.go │ │ │ │ ├── operator_autopilot.go │ │ │ │ ├── operator_keyring.go │ │ │ │ ├── operator_raft.go │ │ │ │ ├── operator_segment.go │ │ │ │ ├── prepared_query.go │ │ │ │ ├── raw.go │ │ │ │ ├── semaphore.go │ │ │ │ ├── session.go │ │ │ │ ├── snapshot.go │ │ │ │ └── status.go │ │ │ └── watch │ │ │ │ ├── funcs.go │ │ │ │ ├── plan.go │ │ │ │ └── watch.go │ │ ├── go-cleanhttp │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── cleanhttp.go │ │ │ ├── doc.go │ │ │ └── handlers.go │ │ ├── go-immutable-radix │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── edges.go │ │ │ ├── iradix.go │ │ │ ├── iter.go │ │ │ ├── node.go │ │ │ └── raw_iter.go │ │ ├── go-rootcerts │ │ │ ├── LICENSE │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── doc.go │ │ │ ├── rootcerts.go │ │ │ ├── rootcerts_base.go │ │ │ └── rootcerts_darwin.go │ │ ├── golang-lru │ │ │ ├── LICENSE │ │ │ └── simplelru │ │ │ │ └── lru.go │ │ └── serf │ │ │ ├── LICENSE │ │ │ └── coordinate │ │ │ ├── client.go │ │ │ ├── config.go │ │ │ ├── coordinate.go │ │ │ └── phantom.go │ ├── jason-wj │ │ └── bitesla │ │ │ ├── common │ │ │ ├── errs │ │ │ │ ├── code.go │ │ │ │ ├── errors.go │ │ │ │ └── msg.go │ │ │ ├── iniconfig │ │ │ │ └── conf.go │ │ │ ├── logger │ │ │ │ ├── daterot │ │ │ │ │ ├── daterot.go │ │ │ │ │ └── vars.go │ │ │ │ └── logger.go │ │ │ ├── util │ │ │ │ ├── cache │ │ │ │ │ └── redis.go │ │ │ │ ├── jwt │ │ │ │ │ └── jwt.go │ │ │ │ └── stringutl │ │ │ │ │ └── base_util.go │ │ │ └── vo │ │ │ │ └── result.go │ │ │ └── service │ │ │ ├── service-exchange │ │ │ ├── client │ │ │ │ └── client.go │ │ │ ├── exchange │ │ │ │ ├── Const.go │ │ │ │ ├── HttpUtils.go │ │ │ │ ├── ParamSignUtils.go │ │ │ │ ├── Utils.go │ │ │ │ ├── api.go │ │ │ │ └── websocket.go │ │ │ └── proto │ │ │ │ ├── exchange.micro.go │ │ │ │ ├── exchange.pb.go │ │ │ │ ├── exchange.proto │ │ │ │ └── exchange_extend.go │ │ │ ├── service-strategy │ │ │ ├── client │ │ │ │ └── client.go │ │ │ └── proto │ │ │ │ ├── strategy.micro.go │ │ │ │ ├── strategy.pb.go │ │ │ │ └── strategy.proto │ │ │ ├── service-trader │ │ │ ├── client │ │ │ │ └── client.go │ │ │ └── proto │ │ │ │ ├── trader.micro.go │ │ │ │ ├── trader.pb.go │ │ │ │ └── trader.proto │ │ │ └── service-user │ │ │ ├── client │ │ │ └── client.go │ │ │ └── proto │ │ │ ├── user.micro.go │ │ │ ├── user.pb.go │ │ │ └── user.proto │ ├── jessevdk │ │ └── go-assets │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── assets.go │ │ │ ├── file.go │ │ │ ├── filesystem.go │ │ │ └── generate.go │ ├── jinzhu │ │ ├── gorm │ │ │ ├── License │ │ │ ├── README.md │ │ │ ├── association.go │ │ │ ├── callback.go │ │ │ ├── callback_create.go │ │ │ ├── callback_delete.go │ │ │ ├── callback_query.go │ │ │ ├── callback_query_preload.go │ │ │ ├── callback_row_query.go │ │ │ ├── callback_save.go │ │ │ ├── callback_update.go │ │ │ ├── dialect.go │ │ │ ├── dialect_common.go │ │ │ ├── dialect_mysql.go │ │ │ ├── dialect_postgres.go │ │ │ ├── dialect_sqlite3.go │ │ │ ├── dialects │ │ │ │ └── mysql │ │ │ │ │ └── mysql.go │ │ │ ├── docker-compose.yml │ │ │ ├── errors.go │ │ │ ├── field.go │ │ │ ├── interface.go │ │ │ ├── join_table_handler.go │ │ │ ├── logger.go │ │ │ ├── main.go │ │ │ ├── model.go │ │ │ ├── model_struct.go │ │ │ ├── naming.go │ │ │ ├── scope.go │ │ │ ├── search.go │ │ │ ├── test_all.sh │ │ │ ├── utils.go │ │ │ └── wercker.yml │ │ └── inflection │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── inflections.go │ │ │ └── wercker.yml │ ├── json-iterator │ │ └── go │ │ │ ├── Gopkg.lock │ │ │ ├── Gopkg.toml │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── adapter.go │ │ │ ├── any.go │ │ │ ├── any_array.go │ │ │ ├── any_bool.go │ │ │ ├── any_float.go │ │ │ ├── any_int32.go │ │ │ ├── any_int64.go │ │ │ ├── any_invalid.go │ │ │ ├── any_nil.go │ │ │ ├── any_number.go │ │ │ ├── any_object.go │ │ │ ├── any_str.go │ │ │ ├── any_uint32.go │ │ │ ├── any_uint64.go │ │ │ ├── build.sh │ │ │ ├── config.go │ │ │ ├── fuzzy_mode_convert_table.md │ │ │ ├── iter.go │ │ │ ├── iter_array.go │ │ │ ├── iter_float.go │ │ │ ├── iter_int.go │ │ │ ├── iter_object.go │ │ │ ├── iter_skip.go │ │ │ ├── iter_skip_sloppy.go │ │ │ ├── iter_skip_strict.go │ │ │ ├── iter_str.go │ │ │ ├── jsoniter.go │ │ │ ├── pool.go │ │ │ ├── reflect.go │ │ │ ├── reflect_array.go │ │ │ ├── reflect_dynamic.go │ │ │ ├── reflect_extension.go │ │ │ ├── reflect_json_number.go │ │ │ ├── reflect_json_raw_message.go │ │ │ ├── reflect_map.go │ │ │ ├── reflect_marshaler.go │ │ │ ├── reflect_native.go │ │ │ ├── reflect_optional.go │ │ │ ├── reflect_slice.go │ │ │ ├── reflect_struct_decoder.go │ │ │ ├── reflect_struct_encoder.go │ │ │ ├── stream.go │ │ │ ├── stream_float.go │ │ │ ├── stream_int.go │ │ │ ├── stream_str.go │ │ │ └── test.sh │ ├── konsorten │ │ └── go-windows-terminal-sequences │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── go.mod │ │ │ └── sequences.go │ ├── lestrrat-go │ │ ├── file-rotatelogs │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── event.go │ │ │ ├── interface.go │ │ │ ├── internal │ │ │ │ └── option │ │ │ │ │ └── option.go │ │ │ ├── options.go │ │ │ └── rotatelogs.go │ │ └── strftime │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── strftime.go │ │ │ └── writer.go │ ├── mailru │ │ └── easyjson │ │ │ ├── LICENSE │ │ │ ├── buffer │ │ │ └── pool.go │ │ │ ├── jlexer │ │ │ ├── bytestostr.go │ │ │ ├── bytestostr_nounsafe.go │ │ │ ├── error.go │ │ │ └── lexer.go │ │ │ └── jwriter │ │ │ └── writer.go │ ├── manucorporat │ │ └── stats │ │ │ ├── LICENSE │ │ │ └── stats.go │ ├── mattn │ │ └── go-isatty │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── doc.go │ │ │ ├── isatty_bsd.go │ │ │ ├── isatty_linux.go │ │ │ ├── isatty_linux_ppc64x.go │ │ │ ├── isatty_others.go │ │ │ ├── isatty_solaris.go │ │ │ └── isatty_windows.go │ ├── micro │ │ ├── cli │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── app.go │ │ │ ├── appveyor.yml │ │ │ ├── category.go │ │ │ ├── cli.go │ │ │ ├── command.go │ │ │ ├── context.go │ │ │ ├── flag.go │ │ │ └── help.go │ │ ├── go-log │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ └── log.go │ │ ├── go-micro │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── broker │ │ │ │ ├── broker.go │ │ │ │ ├── codec │ │ │ │ │ ├── codec.go │ │ │ │ │ └── json │ │ │ │ │ │ └── json.go │ │ │ │ ├── http │ │ │ │ │ └── http.go │ │ │ │ ├── http_broker.go │ │ │ │ └── options.go │ │ │ ├── client │ │ │ │ ├── backoff.go │ │ │ │ ├── buffer.go │ │ │ │ ├── client.go │ │ │ │ ├── context.go │ │ │ │ ├── options.go │ │ │ │ ├── retry.go │ │ │ │ ├── rpc_client.go │ │ │ │ ├── rpc_codec.go │ │ │ │ ├── rpc_message.go │ │ │ │ ├── rpc_pool.go │ │ │ │ ├── rpc_request.go │ │ │ │ ├── rpc_stream.go │ │ │ │ └── wrapper.go │ │ │ ├── cmd │ │ │ │ ├── cmd.go │ │ │ │ └── options.go │ │ │ ├── codec │ │ │ │ ├── codec.go │ │ │ │ ├── jsonrpc │ │ │ │ │ ├── client.go │ │ │ │ │ ├── jsonrpc.go │ │ │ │ │ └── server.go │ │ │ │ └── protorpc │ │ │ │ │ ├── envelope.pb.go │ │ │ │ │ ├── envelope.proto │ │ │ │ │ ├── netstring.go │ │ │ │ │ └── protorpc.go │ │ │ ├── errors │ │ │ │ └── errors.go │ │ │ ├── function.go │ │ │ ├── go-micro.go │ │ │ ├── go-micro.png │ │ │ ├── metadata │ │ │ │ └── metadata.go │ │ │ ├── options.go │ │ │ ├── publisher.go │ │ │ ├── registry │ │ │ │ ├── consul │ │ │ │ │ ├── consul.go │ │ │ │ │ └── options.go │ │ │ │ ├── consul_registry.go │ │ │ │ ├── consul_watcher.go │ │ │ │ ├── encoding.go │ │ │ │ ├── mdns │ │ │ │ │ ├── encoding.go │ │ │ │ │ ├── mdns.go │ │ │ │ │ └── watcher.go │ │ │ │ ├── options.go │ │ │ │ ├── registry.go │ │ │ │ ├── service.go │ │ │ │ └── watcher.go │ │ │ ├── selector │ │ │ │ ├── cache │ │ │ │ │ ├── cache.go │ │ │ │ │ └── options.go │ │ │ │ ├── default.go │ │ │ │ ├── filter.go │ │ │ │ ├── options.go │ │ │ │ ├── selector.go │ │ │ │ └── strategy.go │ │ │ ├── server │ │ │ │ ├── buffer.go │ │ │ │ ├── context.go │ │ │ │ ├── debug.go │ │ │ │ ├── debug │ │ │ │ │ ├── debug.go │ │ │ │ │ └── proto │ │ │ │ │ │ ├── debug.pb.go │ │ │ │ │ │ └── debug.proto │ │ │ │ ├── extractor.go │ │ │ │ ├── handler.go │ │ │ │ ├── options.go │ │ │ │ ├── rpc_codec.go │ │ │ │ ├── rpc_handler.go │ │ │ │ ├── rpc_request.go │ │ │ │ ├── rpc_server.go │ │ │ │ ├── rpc_service.go │ │ │ │ ├── rpc_stream.go │ │ │ │ ├── server.go │ │ │ │ ├── subscriber.go │ │ │ │ └── wrapper.go │ │ │ ├── service.go │ │ │ ├── transport │ │ │ │ ├── codec │ │ │ │ │ └── codec.go │ │ │ │ ├── http │ │ │ │ │ └── http.go │ │ │ │ ├── http_transport.go │ │ │ │ ├── options.go │ │ │ │ └── transport.go │ │ │ └── wrapper.go │ │ ├── go-rcache │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── options.go │ │ │ └── rcache.go │ │ ├── go-web │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── options.go │ │ │ ├── service.go │ │ │ └── web.go │ │ ├── mdns │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── client.go │ │ │ ├── dns_sd.go │ │ │ ├── server.go │ │ │ └── zone.go │ │ └── util │ │ │ ├── LICENSE │ │ │ └── go │ │ │ └── lib │ │ │ ├── addr │ │ │ └── addr.go │ │ │ ├── http │ │ │ ├── http.go │ │ │ ├── options.go │ │ │ └── roundtripper.go │ │ │ ├── net │ │ │ └── net.go │ │ │ └── tls │ │ │ └── tls.go │ ├── miekg │ │ └── dns │ │ │ ├── AUTHORS │ │ │ ├── CONTRIBUTORS │ │ │ ├── COPYRIGHT │ │ │ ├── Gopkg.lock │ │ │ ├── Gopkg.toml │ │ │ ├── LICENSE │ │ │ ├── Makefile.fuzz │ │ │ ├── Makefile.release │ │ │ ├── README.md │ │ │ ├── client.go │ │ │ ├── clientconfig.go │ │ │ ├── compress_generate.go │ │ │ ├── dane.go │ │ │ ├── defaults.go │ │ │ ├── dns.go │ │ │ ├── dnssec.go │ │ │ ├── dnssec_keygen.go │ │ │ ├── dnssec_keyscan.go │ │ │ ├── dnssec_privkey.go │ │ │ ├── doc.go │ │ │ ├── duplicate.go │ │ │ ├── duplicate_generate.go │ │ │ ├── edns.go │ │ │ ├── format.go │ │ │ ├── fuzz.go │ │ │ ├── generate.go │ │ │ ├── labels.go │ │ │ ├── listen_go111.go │ │ │ ├── listen_go_not111.go │ │ │ ├── msg.go │ │ │ ├── msg_generate.go │ │ │ ├── msg_helpers.go │ │ │ ├── nsecx.go │ │ │ ├── privaterr.go │ │ │ ├── rawmsg.go │ │ │ ├── reverse.go │ │ │ ├── sanitize.go │ │ │ ├── scan.go │ │ │ ├── scan_rr.go │ │ │ ├── scanner.go │ │ │ ├── serve_mux.go │ │ │ ├── server.go │ │ │ ├── sig0.go │ │ │ ├── singleinflight.go │ │ │ ├── smimea.go │ │ │ ├── tlsa.go │ │ │ ├── tsig.go │ │ │ ├── types.go │ │ │ ├── types_generate.go │ │ │ ├── udp.go │ │ │ ├── udp_windows.go │ │ │ ├── update.go │ │ │ ├── version.go │ │ │ ├── xfr.go │ │ │ ├── zcompress.go │ │ │ ├── zduplicate.go │ │ │ ├── zmsg.go │ │ │ └── ztypes.go │ ├── mitchellh │ │ ├── go-homedir │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ └── homedir.go │ │ ├── hashstructure │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── go.mod │ │ │ ├── hashstructure.go │ │ │ └── include.go │ │ └── mapstructure │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── decode_hooks.go │ │ │ ├── error.go │ │ │ ├── go.mod │ │ │ └── mapstructure.go │ ├── modern-go │ │ ├── concurrent │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── executor.go │ │ │ ├── go_above_19.go │ │ │ ├── go_below_19.go │ │ │ ├── log.go │ │ │ ├── test.sh │ │ │ └── unbounded_executor.go │ │ └── reflect2 │ │ │ ├── Gopkg.lock │ │ │ ├── Gopkg.toml │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── go_above_17.go │ │ │ ├── go_above_19.go │ │ │ ├── go_below_17.go │ │ │ ├── go_below_19.go │ │ │ ├── reflect2.go │ │ │ ├── reflect2_amd64.s │ │ │ ├── reflect2_kind.go │ │ │ ├── relfect2_386.s │ │ │ ├── relfect2_amd64p32.s │ │ │ ├── relfect2_arm.s │ │ │ ├── relfect2_arm64.s │ │ │ ├── relfect2_mips64x.s │ │ │ ├── relfect2_mipsx.s │ │ │ ├── relfect2_ppc64x.s │ │ │ ├── relfect2_s390x.s │ │ │ ├── safe_field.go │ │ │ ├── safe_map.go │ │ │ ├── safe_slice.go │ │ │ ├── safe_struct.go │ │ │ ├── safe_type.go │ │ │ ├── test.sh │ │ │ ├── type_map.go │ │ │ ├── unsafe_array.go │ │ │ ├── unsafe_eface.go │ │ │ ├── unsafe_field.go │ │ │ ├── unsafe_iface.go │ │ │ ├── unsafe_link.go │ │ │ ├── unsafe_map.go │ │ │ ├── unsafe_ptr.go │ │ │ ├── unsafe_slice.go │ │ │ ├── unsafe_struct.go │ │ │ └── unsafe_type.go │ ├── pborman │ │ └── uuid │ │ │ ├── CONTRIBUTING.md │ │ │ ├── CONTRIBUTORS │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── dce.go │ │ │ ├── doc.go │ │ │ ├── go.mod │ │ │ ├── go.sum │ │ │ ├── hash.go │ │ │ ├── marshal.go │ │ │ ├── node.go │ │ │ ├── sql.go │ │ │ ├── time.go │ │ │ ├── util.go │ │ │ ├── uuid.go │ │ │ ├── version1.go │ │ │ └── version4.go │ ├── pkg │ │ └── errors │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── appveyor.yml │ │ │ ├── errors.go │ │ │ └── stack.go │ ├── pmezard │ │ └── go-difflib │ │ │ ├── LICENSE │ │ │ └── difflib │ │ │ └── difflib.go │ ├── sirupsen │ │ └── logrus │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── alt_exit.go │ │ │ ├── appveyor.yml │ │ │ ├── doc.go │ │ │ ├── entry.go │ │ │ ├── exported.go │ │ │ ├── formatter.go │ │ │ ├── go.mod │ │ │ ├── go.sum │ │ │ ├── hooks.go │ │ │ ├── json_formatter.go │ │ │ ├── logger.go │ │ │ ├── logrus.go │ │ │ ├── terminal_check_appengine.go │ │ │ ├── terminal_check_js.go │ │ │ ├── terminal_check_notappengine.go │ │ │ ├── terminal_check_windows.go │ │ │ ├── terminal_notwindows.go │ │ │ ├── terminal_windows.go │ │ │ ├── text_formatter.go │ │ │ └── writer.go │ ├── swaggo │ │ ├── gin-swagger │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── b0x.yml │ │ │ ├── swagger.go │ │ │ └── swaggerFiles │ │ │ │ ├── ab0x.go │ │ │ │ ├── b0xfile__favicon-16x16.png.go │ │ │ │ ├── b0xfile__favicon-32x32.png.go │ │ │ │ ├── b0xfile__index.html.go │ │ │ │ ├── b0xfile__oauth2-redirect.html.go │ │ │ │ ├── b0xfile__swagger-ui-bundle.js.go │ │ │ │ ├── b0xfile__swagger-ui-bundle.js.map.go │ │ │ │ ├── b0xfile__swagger-ui-standalone-preset.js.go │ │ │ │ ├── b0xfile__swagger-ui-standalone-preset.js.map.go │ │ │ │ ├── b0xfile__swagger-ui.css.go │ │ │ │ ├── b0xfile__swagger-ui.css.map.go │ │ │ │ ├── b0xfile__swagger-ui.js.go │ │ │ │ └── b0xfile__swagger-ui.js.map.go │ │ └── swag │ │ │ ├── CODE_OF_CONDUCT.md │ │ │ ├── CONTRIBUTING.md │ │ │ ├── Makefile │ │ │ ├── PULL_REQUEST_TEMPLATE.md │ │ │ ├── README.md │ │ │ ├── doc.go │ │ │ ├── license │ │ │ ├── operation.go │ │ │ ├── parser.go │ │ │ ├── property.go │ │ │ ├── schema.go │ │ │ ├── swagger.go │ │ │ └── version.go │ ├── thinkerou │ │ └── favicon │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── favicon.go │ │ │ └── favicon.ico │ └── ugorji │ │ └── go │ │ ├── LICENSE │ │ └── codec │ │ ├── 0doc.go │ │ ├── README.md │ │ ├── binc.go │ │ ├── build.sh │ │ ├── cbor.go │ │ ├── codecgen.go │ │ ├── decode.go │ │ ├── encode.go │ │ ├── fast-path.generated.go │ │ ├── fast-path.go.tmpl │ │ ├── fast-path.not.go │ │ ├── gen-dec-array.go.tmpl │ │ ├── gen-dec-map.go.tmpl │ │ ├── gen-enc-chan.go.tmpl │ │ ├── gen-helper.generated.go │ │ ├── gen-helper.go.tmpl │ │ ├── gen.generated.go │ │ ├── gen.go │ │ ├── go.mod │ │ ├── goversion_arrayof_gte_go15.go │ │ ├── goversion_arrayof_lt_go15.go │ │ ├── goversion_makemap_gte_go19.go │ │ ├── goversion_makemap_lt_go19.go │ │ ├── goversion_unexportedembeddedptr_gte_go110.go │ │ ├── goversion_unexportedembeddedptr_lt_go110.go │ │ ├── goversion_unsupported_lt_go14.go │ │ ├── goversion_vendor_eq_go15.go │ │ ├── goversion_vendor_eq_go16.go │ │ ├── goversion_vendor_gte_go17.go │ │ ├── goversion_vendor_lt_go15.go │ │ ├── helper.go │ │ ├── helper_internal.go │ │ ├── helper_not_unsafe.go │ │ ├── helper_unsafe.go │ │ ├── json.go │ │ ├── mammoth-test.go.tmpl │ │ ├── mammoth2-test.go.tmpl │ │ ├── msgpack.go │ │ ├── rpc.go │ │ ├── simple.go │ │ ├── test-cbor-goldens.json │ │ ├── test.py │ │ └── xml.go │ ├── golang.org │ └── x │ │ ├── crypto │ │ ├── LICENSE │ │ ├── PATENTS │ │ ├── acme │ │ │ ├── acme.go │ │ │ ├── autocert │ │ │ │ ├── autocert.go │ │ │ │ ├── cache.go │ │ │ │ ├── listener.go │ │ │ │ └── renewal.go │ │ │ ├── http.go │ │ │ ├── jws.go │ │ │ └── types.go │ │ ├── ed25519 │ │ │ ├── ed25519.go │ │ │ └── internal │ │ │ │ └── edwards25519 │ │ │ │ ├── const.go │ │ │ │ └── edwards25519.go │ │ └── ssh │ │ │ └── terminal │ │ │ ├── terminal.go │ │ │ ├── util.go │ │ │ ├── util_aix.go │ │ │ ├── util_bsd.go │ │ │ ├── util_linux.go │ │ │ ├── util_plan9.go │ │ │ ├── util_solaris.go │ │ │ └── util_windows.go │ │ ├── lint │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── golint │ │ │ ├── golint.go │ │ │ ├── import.go │ │ │ └── importcomment.go │ │ └── lint.go │ │ ├── net │ │ ├── LICENSE │ │ ├── PATENTS │ │ ├── bpf │ │ │ ├── asm.go │ │ │ ├── constants.go │ │ │ ├── doc.go │ │ │ ├── instructions.go │ │ │ ├── setter.go │ │ │ ├── vm.go │ │ │ └── vm_instructions.go │ │ ├── context │ │ │ ├── context.go │ │ │ ├── go17.go │ │ │ ├── go19.go │ │ │ ├── pre_go17.go │ │ │ └── pre_go19.go │ │ ├── http │ │ │ └── httpguts │ │ │ │ ├── guts.go │ │ │ │ └── httplex.go │ │ ├── http2 │ │ │ ├── Dockerfile │ │ │ ├── Makefile │ │ │ ├── README │ │ │ ├── ciphers.go │ │ │ ├── client_conn_pool.go │ │ │ ├── databuffer.go │ │ │ ├── errors.go │ │ │ ├── flow.go │ │ │ ├── frame.go │ │ │ ├── go111.go │ │ │ ├── gotrack.go │ │ │ ├── headermap.go │ │ │ ├── hpack │ │ │ │ ├── encode.go │ │ │ │ ├── hpack.go │ │ │ │ ├── huffman.go │ │ │ │ └── tables.go │ │ │ ├── http2.go │ │ │ ├── not_go111.go │ │ │ ├── pipe.go │ │ │ ├── server.go │ │ │ ├── transport.go │ │ │ ├── write.go │ │ │ ├── writesched.go │ │ │ ├── writesched_priority.go │ │ │ └── writesched_random.go │ │ ├── idna │ │ │ ├── idna.go │ │ │ ├── punycode.go │ │ │ ├── tables.go │ │ │ ├── trie.go │ │ │ └── trieval.go │ │ ├── internal │ │ │ ├── iana │ │ │ │ ├── const.go │ │ │ │ └── gen.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 │ │ │ │ ├── empty.s │ │ │ │ ├── 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 │ │ │ │ ├── sys.go │ │ │ │ ├── sys_bsd.go │ │ │ │ ├── sys_bsdvar.go │ │ │ │ ├── sys_darwin.go │ │ │ │ ├── sys_dragonfly.go │ │ │ │ ├── sys_go1_11_darwin.go │ │ │ │ ├── sys_go1_12_darwin.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_darwin_arm64.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 │ │ ├── ipv4 │ │ │ ├── batch.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 │ │ │ ├── gen.go │ │ │ ├── genericopt.go │ │ │ ├── header.go │ │ │ ├── helper.go │ │ │ ├── iana.go │ │ │ ├── icmp.go │ │ │ ├── icmp_linux.go │ │ │ ├── icmp_stub.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 │ │ │ ├── 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 │ │ │ ├── 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 │ │ │ ├── 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 │ │ │ ├── gen.go │ │ │ ├── genericopt.go │ │ │ ├── header.go │ │ │ ├── helper.go │ │ │ ├── iana.go │ │ │ ├── icmp.go │ │ │ ├── icmp_bsd.go │ │ │ ├── icmp_linux.go │ │ │ ├── icmp_solaris.go │ │ │ ├── icmp_stub.go │ │ │ ├── icmp_windows.go │ │ │ ├── payload.go │ │ │ ├── payload_cmsg.go │ │ │ ├── payload_cmsg_go1_8.go │ │ │ ├── payload_cmsg_go1_9.go │ │ │ ├── payload_nocmsg.go │ │ │ ├── sockopt.go │ │ │ ├── sockopt_posix.go │ │ │ ├── sockopt_stub.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 │ │ │ ├── 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 │ │ ├── trace │ │ │ ├── events.go │ │ │ ├── histogram.go │ │ │ └── trace.go │ │ └── webdav │ │ │ ├── file.go │ │ │ ├── if.go │ │ │ ├── internal │ │ │ └── xml │ │ │ │ ├── README │ │ │ │ ├── marshal.go │ │ │ │ ├── read.go │ │ │ │ ├── typeinfo.go │ │ │ │ └── xml.go │ │ │ ├── litmus_test_server.go │ │ │ ├── lock.go │ │ │ ├── prop.go │ │ │ ├── webdav.go │ │ │ └── xml.go │ │ ├── sys │ │ ├── LICENSE │ │ ├── PATENTS │ │ ├── unix │ │ │ ├── README.md │ │ │ ├── affinity_linux.go │ │ │ ├── aliases.go │ │ │ ├── asm_aix_ppc64.s │ │ │ ├── asm_darwin_386.s │ │ │ ├── asm_darwin_amd64.s │ │ │ ├── asm_darwin_arm.s │ │ │ ├── asm_darwin_arm64.s │ │ │ ├── asm_dragonfly_amd64.s │ │ │ ├── asm_freebsd_386.s │ │ │ ├── asm_freebsd_amd64.s │ │ │ ├── asm_freebsd_arm.s │ │ │ ├── asm_linux_386.s │ │ │ ├── asm_linux_amd64.s │ │ │ ├── asm_linux_arm.s │ │ │ ├── asm_linux_arm64.s │ │ │ ├── asm_linux_mips64x.s │ │ │ ├── asm_linux_mipsx.s │ │ │ ├── asm_linux_ppc64x.s │ │ │ ├── asm_linux_s390x.s │ │ │ ├── asm_netbsd_386.s │ │ │ ├── asm_netbsd_amd64.s │ │ │ ├── asm_netbsd_arm.s │ │ │ ├── asm_openbsd_386.s │ │ │ ├── asm_openbsd_amd64.s │ │ │ ├── asm_openbsd_arm.s │ │ │ ├── asm_solaris_amd64.s │ │ │ ├── bluetooth_linux.go │ │ │ ├── cap_freebsd.go │ │ │ ├── constants.go │ │ │ ├── dev_aix_ppc.go │ │ │ ├── dev_aix_ppc64.go │ │ │ ├── dev_darwin.go │ │ │ ├── dev_dragonfly.go │ │ │ ├── dev_freebsd.go │ │ │ ├── dev_linux.go │ │ │ ├── dev_netbsd.go │ │ │ ├── dev_openbsd.go │ │ │ ├── dirent.go │ │ │ ├── endian_big.go │ │ │ ├── endian_little.go │ │ │ ├── env_unix.go │ │ │ ├── errors_freebsd_386.go │ │ │ ├── errors_freebsd_amd64.go │ │ │ ├── errors_freebsd_arm.go │ │ │ ├── fcntl.go │ │ │ ├── fcntl_linux_32bit.go │ │ │ ├── gccgo.go │ │ │ ├── gccgo_c.c │ │ │ ├── gccgo_linux_amd64.go │ │ │ ├── ioctl.go │ │ │ ├── mkall.sh │ │ │ ├── mkerrors.sh │ │ │ ├── mkpost.go │ │ │ ├── mksyscall.pl │ │ │ ├── mksyscall_aix_ppc.pl │ │ │ ├── mksyscall_aix_ppc64.pl │ │ │ ├── mksyscall_solaris.pl │ │ │ ├── mksysctl_openbsd.pl │ │ │ ├── mksysnum_darwin.pl │ │ │ ├── mksysnum_dragonfly.pl │ │ │ ├── mksysnum_freebsd.pl │ │ │ ├── mksysnum_netbsd.pl │ │ │ ├── mksysnum_openbsd.pl │ │ │ ├── openbsd_pledge.go │ │ │ ├── openbsd_unveil.go │ │ │ ├── pagesize_unix.go │ │ │ ├── race.go │ │ │ ├── race0.go │ │ │ ├── sockcmsg_linux.go │ │ │ ├── sockcmsg_unix.go │ │ │ ├── str.go │ │ │ ├── syscall.go │ │ │ ├── syscall_aix.go │ │ │ ├── syscall_aix_ppc.go │ │ │ ├── syscall_aix_ppc64.go │ │ │ ├── syscall_bsd.go │ │ │ ├── syscall_darwin.go │ │ │ ├── syscall_darwin_386.go │ │ │ ├── syscall_darwin_amd64.go │ │ │ ├── syscall_darwin_arm.go │ │ │ ├── syscall_darwin_arm64.go │ │ │ ├── syscall_dragonfly.go │ │ │ ├── syscall_dragonfly_amd64.go │ │ │ ├── syscall_freebsd.go │ │ │ ├── syscall_freebsd_386.go │ │ │ ├── syscall_freebsd_amd64.go │ │ │ ├── syscall_freebsd_arm.go │ │ │ ├── syscall_linux.go │ │ │ ├── syscall_linux_386.go │ │ │ ├── syscall_linux_amd64.go │ │ │ ├── syscall_linux_amd64_gc.go │ │ │ ├── syscall_linux_arm.go │ │ │ ├── syscall_linux_arm64.go │ │ │ ├── syscall_linux_gc.go │ │ │ ├── syscall_linux_gc_386.go │ │ │ ├── syscall_linux_gccgo_386.go │ │ │ ├── syscall_linux_gccgo_arm.go │ │ │ ├── syscall_linux_mips64x.go │ │ │ ├── syscall_linux_mipsx.go │ │ │ ├── syscall_linux_ppc64x.go │ │ │ ├── syscall_linux_riscv64.go │ │ │ ├── syscall_linux_s390x.go │ │ │ ├── syscall_linux_sparc64.go │ │ │ ├── syscall_netbsd.go │ │ │ ├── syscall_netbsd_386.go │ │ │ ├── syscall_netbsd_amd64.go │ │ │ ├── syscall_netbsd_arm.go │ │ │ ├── syscall_openbsd.go │ │ │ ├── syscall_openbsd_386.go │ │ │ ├── syscall_openbsd_amd64.go │ │ │ ├── syscall_openbsd_arm.go │ │ │ ├── syscall_solaris.go │ │ │ ├── syscall_solaris_amd64.go │ │ │ ├── syscall_unix.go │ │ │ ├── syscall_unix_gc.go │ │ │ ├── timestruct.go │ │ │ ├── types_aix.go │ │ │ ├── types_darwin.go │ │ │ ├── types_dragonfly.go │ │ │ ├── types_freebsd.go │ │ │ ├── types_netbsd.go │ │ │ ├── types_openbsd.go │ │ │ ├── types_solaris.go │ │ │ ├── xattr_bsd.go │ │ │ ├── zerrors_aix_ppc.go │ │ │ ├── zerrors_aix_ppc64.go │ │ │ ├── zerrors_darwin_386.go │ │ │ ├── zerrors_darwin_amd64.go │ │ │ ├── zerrors_darwin_arm.go │ │ │ ├── zerrors_darwin_arm64.go │ │ │ ├── zerrors_dragonfly_amd64.go │ │ │ ├── zerrors_freebsd_386.go │ │ │ ├── zerrors_freebsd_amd64.go │ │ │ ├── zerrors_freebsd_arm.go │ │ │ ├── zerrors_linux_386.go │ │ │ ├── zerrors_linux_amd64.go │ │ │ ├── zerrors_linux_arm.go │ │ │ ├── zerrors_linux_arm64.go │ │ │ ├── zerrors_linux_mips.go │ │ │ ├── zerrors_linux_mips64.go │ │ │ ├── zerrors_linux_mips64le.go │ │ │ ├── zerrors_linux_mipsle.go │ │ │ ├── zerrors_linux_ppc64.go │ │ │ ├── zerrors_linux_ppc64le.go │ │ │ ├── zerrors_linux_riscv64.go │ │ │ ├── zerrors_linux_s390x.go │ │ │ ├── zerrors_linux_sparc64.go │ │ │ ├── zerrors_netbsd_386.go │ │ │ ├── zerrors_netbsd_amd64.go │ │ │ ├── zerrors_netbsd_arm.go │ │ │ ├── zerrors_openbsd_386.go │ │ │ ├── zerrors_openbsd_amd64.go │ │ │ ├── zerrors_openbsd_arm.go │ │ │ ├── zerrors_solaris_amd64.go │ │ │ ├── zptrace386_linux.go │ │ │ ├── zptracearm_linux.go │ │ │ ├── zptracemips_linux.go │ │ │ ├── zptracemipsle_linux.go │ │ │ ├── zsyscall_aix_ppc.go │ │ │ ├── zsyscall_aix_ppc64.go │ │ │ ├── zsyscall_aix_ppc64_gc.go │ │ │ ├── zsyscall_aix_ppc64_gccgo.go │ │ │ ├── zsyscall_darwin_386.go │ │ │ ├── zsyscall_darwin_amd64.go │ │ │ ├── zsyscall_darwin_arm.go │ │ │ ├── zsyscall_darwin_arm64.go │ │ │ ├── zsyscall_dragonfly_amd64.go │ │ │ ├── zsyscall_freebsd_386.go │ │ │ ├── zsyscall_freebsd_amd64.go │ │ │ ├── zsyscall_freebsd_arm.go │ │ │ ├── zsyscall_linux_386.go │ │ │ ├── zsyscall_linux_amd64.go │ │ │ ├── zsyscall_linux_arm.go │ │ │ ├── zsyscall_linux_arm64.go │ │ │ ├── zsyscall_linux_mips.go │ │ │ ├── zsyscall_linux_mips64.go │ │ │ ├── zsyscall_linux_mips64le.go │ │ │ ├── zsyscall_linux_mipsle.go │ │ │ ├── zsyscall_linux_ppc64.go │ │ │ ├── zsyscall_linux_ppc64le.go │ │ │ ├── zsyscall_linux_riscv64.go │ │ │ ├── zsyscall_linux_s390x.go │ │ │ ├── zsyscall_linux_sparc64.go │ │ │ ├── zsyscall_netbsd_386.go │ │ │ ├── zsyscall_netbsd_amd64.go │ │ │ ├── zsyscall_netbsd_arm.go │ │ │ ├── zsyscall_openbsd_386.go │ │ │ ├── zsyscall_openbsd_amd64.go │ │ │ ├── zsyscall_openbsd_arm.go │ │ │ ├── zsyscall_solaris_amd64.go │ │ │ ├── zsysctl_openbsd_386.go │ │ │ ├── zsysctl_openbsd_amd64.go │ │ │ ├── zsysctl_openbsd_arm.go │ │ │ ├── zsysnum_darwin_386.go │ │ │ ├── zsysnum_darwin_amd64.go │ │ │ ├── zsysnum_darwin_arm.go │ │ │ ├── zsysnum_darwin_arm64.go │ │ │ ├── zsysnum_dragonfly_amd64.go │ │ │ ├── zsysnum_freebsd_386.go │ │ │ ├── zsysnum_freebsd_amd64.go │ │ │ ├── zsysnum_freebsd_arm.go │ │ │ ├── zsysnum_linux_386.go │ │ │ ├── zsysnum_linux_amd64.go │ │ │ ├── zsysnum_linux_arm.go │ │ │ ├── zsysnum_linux_arm64.go │ │ │ ├── zsysnum_linux_mips.go │ │ │ ├── zsysnum_linux_mips64.go │ │ │ ├── zsysnum_linux_mips64le.go │ │ │ ├── zsysnum_linux_mipsle.go │ │ │ ├── zsysnum_linux_ppc64.go │ │ │ ├── zsysnum_linux_ppc64le.go │ │ │ ├── zsysnum_linux_riscv64.go │ │ │ ├── zsysnum_linux_s390x.go │ │ │ ├── zsysnum_linux_sparc64.go │ │ │ ├── zsysnum_netbsd_386.go │ │ │ ├── zsysnum_netbsd_amd64.go │ │ │ ├── zsysnum_netbsd_arm.go │ │ │ ├── zsysnum_openbsd_386.go │ │ │ ├── zsysnum_openbsd_amd64.go │ │ │ ├── zsysnum_openbsd_arm.go │ │ │ ├── ztypes_aix_ppc.go │ │ │ ├── ztypes_aix_ppc64.go │ │ │ ├── ztypes_darwin_386.go │ │ │ ├── ztypes_darwin_amd64.go │ │ │ ├── ztypes_darwin_arm.go │ │ │ ├── ztypes_darwin_arm64.go │ │ │ ├── ztypes_dragonfly_amd64.go │ │ │ ├── ztypes_freebsd_386.go │ │ │ ├── ztypes_freebsd_amd64.go │ │ │ ├── ztypes_freebsd_arm.go │ │ │ ├── ztypes_linux_386.go │ │ │ ├── ztypes_linux_amd64.go │ │ │ ├── ztypes_linux_arm.go │ │ │ ├── ztypes_linux_arm64.go │ │ │ ├── ztypes_linux_mips.go │ │ │ ├── ztypes_linux_mips64.go │ │ │ ├── ztypes_linux_mips64le.go │ │ │ ├── ztypes_linux_mipsle.go │ │ │ ├── ztypes_linux_ppc64.go │ │ │ ├── ztypes_linux_ppc64le.go │ │ │ ├── ztypes_linux_riscv64.go │ │ │ ├── ztypes_linux_s390x.go │ │ │ ├── ztypes_linux_sparc64.go │ │ │ ├── ztypes_netbsd_386.go │ │ │ ├── ztypes_netbsd_amd64.go │ │ │ ├── ztypes_netbsd_arm.go │ │ │ ├── ztypes_openbsd_386.go │ │ │ ├── ztypes_openbsd_amd64.go │ │ │ ├── ztypes_openbsd_arm.go │ │ │ └── ztypes_solaris_amd64.go │ │ └── windows │ │ │ ├── aliases.go │ │ │ ├── asm_windows_386.s │ │ │ ├── asm_windows_amd64.s │ │ │ ├── asm_windows_arm.s │ │ │ ├── dll_windows.go │ │ │ ├── env_windows.go │ │ │ ├── eventlog.go │ │ │ ├── exec_windows.go │ │ │ ├── memory_windows.go │ │ │ ├── mksyscall.go │ │ │ ├── race.go │ │ │ ├── race0.go │ │ │ ├── security_windows.go │ │ │ ├── service.go │ │ │ ├── str.go │ │ │ ├── syscall.go │ │ │ ├── syscall_windows.go │ │ │ ├── types_windows.go │ │ │ ├── types_windows_386.go │ │ │ ├── types_windows_amd64.go │ │ │ ├── types_windows_arm.go │ │ │ └── zsyscall_windows.go │ │ ├── text │ │ ├── LICENSE │ │ ├── PATENTS │ │ ├── secure │ │ │ └── bidirule │ │ │ │ ├── bidirule.go │ │ │ │ ├── bidirule10.0.0.go │ │ │ │ └── bidirule9.0.0.go │ │ ├── transform │ │ │ └── transform.go │ │ ├── unicode │ │ │ ├── bidi │ │ │ │ ├── bidi.go │ │ │ │ ├── bracket.go │ │ │ │ ├── core.go │ │ │ │ ├── gen.go │ │ │ │ ├── gen_ranges.go │ │ │ │ ├── gen_trieval.go │ │ │ │ ├── prop.go │ │ │ │ ├── tables10.0.0.go │ │ │ │ ├── tables9.0.0.go │ │ │ │ └── trieval.go │ │ │ └── norm │ │ │ │ ├── composition.go │ │ │ │ ├── forminfo.go │ │ │ │ ├── input.go │ │ │ │ ├── iter.go │ │ │ │ ├── maketables.go │ │ │ │ ├── normalize.go │ │ │ │ ├── readwriter.go │ │ │ │ ├── tables10.0.0.go │ │ │ │ ├── tables9.0.0.go │ │ │ │ ├── transform.go │ │ │ │ ├── trie.go │ │ │ │ └── triegen.go │ │ └── width │ │ │ ├── gen.go │ │ │ ├── gen_common.go │ │ │ ├── gen_trieval.go │ │ │ ├── kind_string.go │ │ │ ├── tables10.0.0.go │ │ │ ├── tables9.0.0.go │ │ │ ├── transform.go │ │ │ ├── trieval.go │ │ │ └── width.go │ │ └── tools │ │ ├── LICENSE │ │ ├── PATENTS │ │ └── go │ │ ├── ast │ │ └── astutil │ │ │ ├── enclosing.go │ │ │ ├── imports.go │ │ │ ├── rewrite.go │ │ │ └── util.go │ │ ├── buildutil │ │ ├── allpackages.go │ │ ├── fakecontext.go │ │ ├── overlay.go │ │ ├── tags.go │ │ └── util.go │ │ ├── gcexportdata │ │ ├── gcexportdata.go │ │ ├── importer.go │ │ └── main.go │ │ ├── internal │ │ ├── cgo │ │ │ ├── cgo.go │ │ │ └── cgo_pkgconfig.go │ │ └── gcimporter │ │ │ ├── bexport.go │ │ │ ├── bimport.go │ │ │ ├── exportdata.go │ │ │ ├── gcimporter.go │ │ │ ├── iimport.go │ │ │ ├── newInterface10.go │ │ │ └── newInterface11.go │ │ └── loader │ │ ├── doc.go │ │ ├── loader.go │ │ └── util.go │ ├── google.golang.org │ ├── genproto │ │ ├── LICENSE │ │ └── googleapis │ │ │ └── rpc │ │ │ └── status │ │ │ └── status.pb.go │ └── grpc │ │ ├── AUTHORS │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README.md │ │ ├── backoff.go │ │ ├── balancer.go │ │ ├── balancer │ │ ├── balancer.go │ │ ├── base │ │ │ ├── balancer.go │ │ │ └── base.go │ │ └── roundrobin │ │ │ └── roundrobin.go │ │ ├── balancer_conn_wrappers.go │ │ ├── balancer_v1_wrapper.go │ │ ├── binarylog │ │ └── grpc_binarylog_v1 │ │ │ └── binarylog.pb.go │ │ ├── call.go │ │ ├── clientconn.go │ │ ├── codec.go │ │ ├── codegen.sh │ │ ├── codes │ │ ├── code_string.go │ │ └── codes.go │ │ ├── connectivity │ │ └── connectivity.go │ │ ├── credentials │ │ ├── credentials.go │ │ └── internal │ │ │ ├── syscallconn.go │ │ │ └── syscallconn_appengine.go │ │ ├── dialoptions.go │ │ ├── doc.go │ │ ├── encoding │ │ ├── encoding.go │ │ └── proto │ │ │ └── proto.go │ │ ├── go.mod │ │ ├── go.sum │ │ ├── grpclog │ │ ├── grpclog.go │ │ ├── logger.go │ │ └── loggerv2.go │ │ ├── install_gae.sh │ │ ├── interceptor.go │ │ ├── internal │ │ ├── backoff │ │ │ └── backoff.go │ │ ├── binarylog │ │ │ ├── binarylog.go │ │ │ ├── binarylog_testutil.go │ │ │ ├── env_config.go │ │ │ ├── method_logger.go │ │ │ ├── regenerate.sh │ │ │ ├── sink.go │ │ │ └── util.go │ │ ├── channelz │ │ │ ├── funcs.go │ │ │ ├── types.go │ │ │ ├── types_linux.go │ │ │ ├── types_nonlinux.go │ │ │ ├── util_linux.go │ │ │ └── util_nonlinux.go │ │ ├── envconfig │ │ │ └── envconfig.go │ │ ├── grpcrand │ │ │ └── grpcrand.go │ │ ├── grpcsync │ │ │ └── event.go │ │ ├── internal.go │ │ ├── syscall │ │ │ ├── syscall_linux.go │ │ │ └── syscall_nonlinux.go │ │ └── transport │ │ │ ├── bdp_estimator.go │ │ │ ├── controlbuf.go │ │ │ ├── defaults.go │ │ │ ├── flowcontrol.go │ │ │ ├── handler_server.go │ │ │ ├── http2_client.go │ │ │ ├── http2_server.go │ │ │ ├── http_util.go │ │ │ ├── log.go │ │ │ └── transport.go │ │ ├── keepalive │ │ └── keepalive.go │ │ ├── metadata │ │ └── metadata.go │ │ ├── naming │ │ ├── dns_resolver.go │ │ └── naming.go │ │ ├── peer │ │ └── peer.go │ │ ├── picker_wrapper.go │ │ ├── pickfirst.go │ │ ├── proxy.go │ │ ├── resolver │ │ ├── dns │ │ │ └── dns_resolver.go │ │ ├── passthrough │ │ │ └── passthrough.go │ │ └── resolver.go │ │ ├── resolver_conn_wrapper.go │ │ ├── rpc_util.go │ │ ├── server.go │ │ ├── service_config.go │ │ ├── stats │ │ ├── handlers.go │ │ └── stats.go │ │ ├── status │ │ └── status.go │ │ ├── stream.go │ │ ├── tap │ │ └── tap.go │ │ ├── trace.go │ │ ├── version.go │ │ └── vet.sh │ ├── gopkg.in │ ├── go-playground │ │ └── validator.v8 │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── baked_in.go │ │ │ ├── cache.go │ │ │ ├── doc.go │ │ │ ├── logo.png │ │ │ ├── regexes.go │ │ │ ├── util.go │ │ │ └── validator.go │ └── yaml.v2 │ │ ├── LICENSE │ │ ├── LICENSE.libyaml │ │ ├── NOTICE │ │ ├── README.md │ │ ├── apic.go │ │ ├── decode.go │ │ ├── emitterc.go │ │ ├── encode.go │ │ ├── go.mod │ │ ├── parserc.go │ │ ├── readerc.go │ │ ├── resolve.go │ │ ├── scannerc.go │ │ ├── sorter.go │ │ ├── writerc.go │ │ ├── yaml.go │ │ ├── yamlh.go │ │ └── yamlprivateh.go │ └── vendor.json ├── service-exchange ├── Dockerfile ├── Makefile ├── README.md ├── client │ └── client.go ├── conf │ ├── bitesla-config.ini │ ├── bitesla-env-dev.ini │ ├── bitesla-env-prod.ini │ ├── bitesla-env-test.ini │ └── conf.go ├── db │ ├── db.go │ └── exchange_mapper.go ├── exchange │ ├── Const.go │ ├── HttpUtils.go │ ├── ParamSignUtils.go │ ├── Utils.go │ ├── api.go │ ├── builder │ │ └── APIBuilder.go │ ├── huobi │ │ └── HuobiPro.go │ └── websocket.go ├── handler │ ├── exchange_handler.go │ └── exchange_resposity.go ├── main.go ├── orm │ ├── exchange.go │ └── table2struct │ │ └── main.go ├── proto │ ├── exchange.micro.go │ ├── exchange.pb.go │ ├── exchange.proto │ └── exchange_extend.go ├── socket_test │ ├── client │ │ └── client.go │ ├── server │ │ └── server.go │ └── trader │ │ ├── client │ │ └── client.go │ │ └── server │ │ └── trader.go └── vendor │ ├── github.com │ ├── armon │ │ └── go-metrics │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── const_unix.go │ │ │ ├── const_windows.go │ │ │ ├── inmem.go │ │ │ ├── inmem_endpoint.go │ │ │ ├── inmem_signal.go │ │ │ ├── metrics.go │ │ │ ├── sink.go │ │ │ ├── start.go │ │ │ ├── statsd.go │ │ │ └── statsite.go │ ├── campoy │ │ └── embedmd │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── embedmd │ │ │ ├── command.go │ │ │ ├── content.go │ │ │ ├── embedmd.go │ │ │ └── parser.go │ │ │ └── main.go │ ├── client9 │ │ └── misspell │ │ │ ├── Dockerfile │ │ │ ├── Gopkg.lock │ │ │ ├── Gopkg.toml │ │ │ ├── LICENSE │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── RELEASE-HOWTO.md │ │ │ ├── ascii.go │ │ │ ├── case.go │ │ │ ├── cmd │ │ │ └── misspell │ │ │ │ └── main.go │ │ │ ├── goreleaser.yml │ │ │ ├── install-misspell.sh │ │ │ ├── legal.go │ │ │ ├── mime.go │ │ │ ├── notwords.go │ │ │ ├── replace.go │ │ │ ├── stringreplacer.go │ │ │ ├── stringreplacer_test.gox │ │ │ ├── url.go │ │ │ └── words.go │ ├── dustin │ │ └── go-broadcast │ │ │ ├── LICENSE │ │ │ ├── README.markdown │ │ │ ├── broadcaster.go │ │ │ └── mux_observer.go │ ├── garyburd │ │ └── redigo │ │ │ ├── LICENSE │ │ │ ├── internal │ │ │ └── commandinfo.go │ │ │ └── redis │ │ │ ├── conn.go │ │ │ ├── doc.go │ │ │ ├── go16.go │ │ │ ├── go17.go │ │ │ ├── go18.go │ │ │ ├── log.go │ │ │ ├── pool.go │ │ │ ├── pool17.go │ │ │ ├── pubsub.go │ │ │ ├── redis.go │ │ │ ├── reply.go │ │ │ ├── scan.go │ │ │ └── script.go │ ├── gin-contrib │ │ └── sse │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── sse-decoder.go │ │ │ ├── sse-encoder.go │ │ │ └── writer.go │ ├── gin-gonic │ │ ├── autotls │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── autotls.go │ │ │ └── doc.go │ │ └── gin │ │ │ ├── AUTHORS.md │ │ │ ├── BENCHMARKS.md │ │ │ ├── CHANGELOG.md │ │ │ ├── CODE_OF_CONDUCT.md │ │ │ ├── CONTRIBUTING.md │ │ │ ├── LICENSE │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── auth.go │ │ │ ├── binding │ │ │ ├── binding.go │ │ │ ├── default_validator.go │ │ │ ├── form.go │ │ │ ├── form_mapping.go │ │ │ ├── json.go │ │ │ ├── msgpack.go │ │ │ ├── protobuf.go │ │ │ ├── query.go │ │ │ └── xml.go │ │ │ ├── codecov.yml │ │ │ ├── context.go │ │ │ ├── context_17.go │ │ │ ├── context_appengine.go │ │ │ ├── debug.go │ │ │ ├── deprecated.go │ │ │ ├── doc.go │ │ │ ├── errors.go │ │ │ ├── fs.go │ │ │ ├── gin.go │ │ │ ├── go.mod │ │ │ ├── go.sum │ │ │ ├── internal │ │ │ └── json │ │ │ │ ├── json.go │ │ │ │ └── jsoniter.go │ │ │ ├── logger.go │ │ │ ├── mode.go │ │ │ ├── path.go │ │ │ ├── recovery.go │ │ │ ├── render │ │ │ ├── data.go │ │ │ ├── html.go │ │ │ ├── json.go │ │ │ ├── json_17.go │ │ │ ├── msgpack.go │ │ │ ├── protobuf.go │ │ │ ├── reader.go │ │ │ ├── redirect.go │ │ │ ├── render.go │ │ │ ├── text.go │ │ │ ├── xml.go │ │ │ └── yaml.go │ │ │ ├── response_writer.go │ │ │ ├── response_writer_1.7.go │ │ │ ├── response_writer_1.8.go │ │ │ ├── routergroup.go │ │ │ ├── test_helpers.go │ │ │ ├── tools.go │ │ │ ├── tree.go │ │ │ ├── utils.go │ │ │ ├── version.go │ │ │ └── wercker.yml │ ├── go-log │ │ └── log │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── log.go │ │ │ └── log │ │ │ └── log.go │ ├── go-sql-driver │ │ └── mysql │ │ │ ├── AUTHORS │ │ │ ├── CHANGELOG.md │ │ │ ├── CONTRIBUTING.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── appengine.go │ │ │ ├── auth.go │ │ │ ├── buffer.go │ │ │ ├── collations.go │ │ │ ├── connection.go │ │ │ ├── const.go │ │ │ ├── driver.go │ │ │ ├── dsn.go │ │ │ ├── errors.go │ │ │ ├── fields.go │ │ │ ├── infile.go │ │ │ ├── packets.go │ │ │ ├── result.go │ │ │ ├── rows.go │ │ │ ├── statement.go │ │ │ ├── transaction.go │ │ │ └── utils.go │ ├── golang │ │ └── protobuf │ │ │ ├── LICENSE │ │ │ ├── proto │ │ │ ├── clone.go │ │ │ ├── decode.go │ │ │ ├── deprecated.go │ │ │ ├── discard.go │ │ │ ├── encode.go │ │ │ ├── equal.go │ │ │ ├── extensions.go │ │ │ ├── lib.go │ │ │ ├── message_set.go │ │ │ ├── pointer_reflect.go │ │ │ ├── pointer_unsafe.go │ │ │ ├── properties.go │ │ │ ├── table_marshal.go │ │ │ ├── table_merge.go │ │ │ ├── table_unmarshal.go │ │ │ ├── text.go │ │ │ └── text_parser.go │ │ │ └── ptypes │ │ │ ├── any.go │ │ │ ├── any │ │ │ ├── any.pb.go │ │ │ └── any.proto │ │ │ ├── doc.go │ │ │ ├── duration.go │ │ │ ├── duration │ │ │ ├── duration.pb.go │ │ │ └── duration.proto │ │ │ ├── timestamp.go │ │ │ └── timestamp │ │ │ ├── timestamp.pb.go │ │ │ └── timestamp.proto │ ├── google │ │ └── uuid │ │ │ ├── CONTRIBUTING.md │ │ │ ├── CONTRIBUTORS │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── dce.go │ │ │ ├── doc.go │ │ │ ├── go.mod │ │ │ ├── hash.go │ │ │ ├── marshal.go │ │ │ ├── node.go │ │ │ ├── node_js.go │ │ │ ├── node_net.go │ │ │ ├── sql.go │ │ │ ├── time.go │ │ │ ├── util.go │ │ │ ├── uuid.go │ │ │ ├── version1.go │ │ │ └── version4.go │ ├── gorilla │ │ └── websocket │ │ │ ├── AUTHORS │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── client.go │ │ │ ├── client_clone.go │ │ │ ├── client_clone_legacy.go │ │ │ ├── compression.go │ │ │ ├── conn.go │ │ │ ├── conn_write.go │ │ │ ├── conn_write_legacy.go │ │ │ ├── doc.go │ │ │ ├── json.go │ │ │ ├── mask.go │ │ │ ├── mask_safe.go │ │ │ ├── prepared.go │ │ │ ├── proxy.go │ │ │ ├── server.go │ │ │ ├── trace.go │ │ │ ├── trace_17.go │ │ │ ├── util.go │ │ │ └── x_net_proxy.go │ ├── hashicorp │ │ ├── consul │ │ │ ├── LICENSE │ │ │ ├── NOTICE.md │ │ │ ├── api │ │ │ │ ├── README.md │ │ │ │ ├── acl.go │ │ │ │ ├── agent.go │ │ │ │ ├── api.go │ │ │ │ ├── catalog.go │ │ │ │ ├── connect.go │ │ │ │ ├── connect_ca.go │ │ │ │ ├── connect_intention.go │ │ │ │ ├── coordinate.go │ │ │ │ ├── event.go │ │ │ │ ├── health.go │ │ │ │ ├── kv.go │ │ │ │ ├── lock.go │ │ │ │ ├── operator.go │ │ │ │ ├── operator_area.go │ │ │ │ ├── operator_autopilot.go │ │ │ │ ├── operator_keyring.go │ │ │ │ ├── operator_raft.go │ │ │ │ ├── operator_segment.go │ │ │ │ ├── prepared_query.go │ │ │ │ ├── raw.go │ │ │ │ ├── semaphore.go │ │ │ │ ├── session.go │ │ │ │ ├── snapshot.go │ │ │ │ └── status.go │ │ │ └── watch │ │ │ │ ├── funcs.go │ │ │ │ ├── plan.go │ │ │ │ └── watch.go │ │ ├── go-cleanhttp │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── cleanhttp.go │ │ │ ├── doc.go │ │ │ └── handlers.go │ │ ├── go-immutable-radix │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── edges.go │ │ │ ├── iradix.go │ │ │ ├── iter.go │ │ │ ├── node.go │ │ │ └── raw_iter.go │ │ ├── go-rootcerts │ │ │ ├── LICENSE │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── doc.go │ │ │ ├── rootcerts.go │ │ │ ├── rootcerts_base.go │ │ │ └── rootcerts_darwin.go │ │ ├── golang-lru │ │ │ ├── LICENSE │ │ │ └── simplelru │ │ │ │ └── lru.go │ │ └── serf │ │ │ ├── LICENSE │ │ │ └── coordinate │ │ │ ├── client.go │ │ │ ├── config.go │ │ │ ├── coordinate.go │ │ │ └── phantom.go │ ├── jason-wj │ │ └── bitesla │ │ │ └── common │ │ │ ├── constants │ │ │ ├── omit.go │ │ │ └── redis_key.go │ │ │ ├── errs │ │ │ ├── code.go │ │ │ ├── errors.go │ │ │ └── msg.go │ │ │ ├── iniconfig │ │ │ └── conf.go │ │ │ ├── logger │ │ │ ├── daterot │ │ │ │ ├── daterot.go │ │ │ │ └── vars.go │ │ │ └── logger.go │ │ │ └── util │ │ │ ├── cache │ │ │ └── redis.go │ │ │ ├── idgenerate │ │ │ └── id.go │ │ │ └── mysql │ │ │ └── converter │ │ │ ├── table2struct.go │ │ │ └── version.go │ ├── jessevdk │ │ └── go-assets │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── assets.go │ │ │ ├── file.go │ │ │ ├── filesystem.go │ │ │ └── generate.go │ ├── jinzhu │ │ ├── gorm │ │ │ ├── License │ │ │ ├── README.md │ │ │ ├── association.go │ │ │ ├── callback.go │ │ │ ├── callback_create.go │ │ │ ├── callback_delete.go │ │ │ ├── callback_query.go │ │ │ ├── callback_query_preload.go │ │ │ ├── callback_row_query.go │ │ │ ├── callback_save.go │ │ │ ├── callback_update.go │ │ │ ├── dialect.go │ │ │ ├── dialect_common.go │ │ │ ├── dialect_mysql.go │ │ │ ├── dialect_postgres.go │ │ │ ├── dialect_sqlite3.go │ │ │ ├── dialects │ │ │ │ └── mysql │ │ │ │ │ └── mysql.go │ │ │ ├── docker-compose.yml │ │ │ ├── errors.go │ │ │ ├── field.go │ │ │ ├── interface.go │ │ │ ├── join_table_handler.go │ │ │ ├── logger.go │ │ │ ├── main.go │ │ │ ├── model.go │ │ │ ├── model_struct.go │ │ │ ├── naming.go │ │ │ ├── scope.go │ │ │ ├── search.go │ │ │ ├── test_all.sh │ │ │ ├── utils.go │ │ │ └── wercker.yml │ │ └── inflection │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── inflections.go │ │ │ └── wercker.yml │ ├── json-iterator │ │ └── go │ │ │ ├── Gopkg.lock │ │ │ ├── Gopkg.toml │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── adapter.go │ │ │ ├── any.go │ │ │ ├── any_array.go │ │ │ ├── any_bool.go │ │ │ ├── any_float.go │ │ │ ├── any_int32.go │ │ │ ├── any_int64.go │ │ │ ├── any_invalid.go │ │ │ ├── any_nil.go │ │ │ ├── any_number.go │ │ │ ├── any_object.go │ │ │ ├── any_str.go │ │ │ ├── any_uint32.go │ │ │ ├── any_uint64.go │ │ │ ├── build.sh │ │ │ ├── config.go │ │ │ ├── fuzzy_mode_convert_table.md │ │ │ ├── iter.go │ │ │ ├── iter_array.go │ │ │ ├── iter_float.go │ │ │ ├── iter_int.go │ │ │ ├── iter_object.go │ │ │ ├── iter_skip.go │ │ │ ├── iter_skip_sloppy.go │ │ │ ├── iter_skip_strict.go │ │ │ ├── iter_str.go │ │ │ ├── jsoniter.go │ │ │ ├── pool.go │ │ │ ├── reflect.go │ │ │ ├── reflect_array.go │ │ │ ├── reflect_dynamic.go │ │ │ ├── reflect_extension.go │ │ │ ├── reflect_json_number.go │ │ │ ├── reflect_json_raw_message.go │ │ │ ├── reflect_map.go │ │ │ ├── reflect_marshaler.go │ │ │ ├── reflect_native.go │ │ │ ├── reflect_optional.go │ │ │ ├── reflect_slice.go │ │ │ ├── reflect_struct_decoder.go │ │ │ ├── reflect_struct_encoder.go │ │ │ ├── stream.go │ │ │ ├── stream_float.go │ │ │ ├── stream_int.go │ │ │ ├── stream_str.go │ │ │ └── test.sh │ ├── konsorten │ │ └── go-windows-terminal-sequences │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── go.mod │ │ │ └── sequences.go │ ├── lestrrat-go │ │ ├── file-rotatelogs │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── event.go │ │ │ ├── interface.go │ │ │ ├── internal │ │ │ │ └── option │ │ │ │ │ └── option.go │ │ │ ├── options.go │ │ │ └── rotatelogs.go │ │ └── strftime │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── strftime.go │ │ │ └── writer.go │ ├── manucorporat │ │ └── stats │ │ │ ├── LICENSE │ │ │ └── stats.go │ ├── mattn │ │ └── go-isatty │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── doc.go │ │ │ ├── isatty_bsd.go │ │ │ ├── isatty_linux.go │ │ │ ├── isatty_linux_ppc64x.go │ │ │ ├── isatty_others.go │ │ │ ├── isatty_solaris.go │ │ │ └── isatty_windows.go │ ├── micro │ │ ├── cli │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── app.go │ │ │ ├── appveyor.yml │ │ │ ├── category.go │ │ │ ├── cli.go │ │ │ ├── command.go │ │ │ ├── context.go │ │ │ ├── flag.go │ │ │ └── help.go │ │ ├── go-log │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ └── log.go │ │ ├── go-micro │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── broker │ │ │ │ ├── broker.go │ │ │ │ ├── codec │ │ │ │ │ ├── codec.go │ │ │ │ │ └── json │ │ │ │ │ │ └── json.go │ │ │ │ ├── http │ │ │ │ │ └── http.go │ │ │ │ ├── http_broker.go │ │ │ │ └── options.go │ │ │ ├── client │ │ │ │ ├── backoff.go │ │ │ │ ├── buffer.go │ │ │ │ ├── client.go │ │ │ │ ├── context.go │ │ │ │ ├── options.go │ │ │ │ ├── retry.go │ │ │ │ ├── rpc_client.go │ │ │ │ ├── rpc_codec.go │ │ │ │ ├── rpc_message.go │ │ │ │ ├── rpc_pool.go │ │ │ │ ├── rpc_request.go │ │ │ │ ├── rpc_stream.go │ │ │ │ └── wrapper.go │ │ │ ├── cmd │ │ │ │ ├── cmd.go │ │ │ │ └── options.go │ │ │ ├── codec │ │ │ │ ├── codec.go │ │ │ │ ├── jsonrpc │ │ │ │ │ ├── client.go │ │ │ │ │ ├── jsonrpc.go │ │ │ │ │ └── server.go │ │ │ │ └── protorpc │ │ │ │ │ ├── envelope.pb.go │ │ │ │ │ ├── envelope.proto │ │ │ │ │ ├── netstring.go │ │ │ │ │ └── protorpc.go │ │ │ ├── errors │ │ │ │ └── errors.go │ │ │ ├── function.go │ │ │ ├── go-micro.go │ │ │ ├── go-micro.png │ │ │ ├── metadata │ │ │ │ └── metadata.go │ │ │ ├── options.go │ │ │ ├── publisher.go │ │ │ ├── registry │ │ │ │ ├── consul │ │ │ │ │ ├── consul.go │ │ │ │ │ └── options.go │ │ │ │ ├── consul_registry.go │ │ │ │ ├── consul_watcher.go │ │ │ │ ├── encoding.go │ │ │ │ ├── mdns │ │ │ │ │ ├── encoding.go │ │ │ │ │ ├── mdns.go │ │ │ │ │ └── watcher.go │ │ │ │ ├── options.go │ │ │ │ ├── registry.go │ │ │ │ ├── service.go │ │ │ │ └── watcher.go │ │ │ ├── selector │ │ │ │ ├── cache │ │ │ │ │ ├── cache.go │ │ │ │ │ └── options.go │ │ │ │ ├── default.go │ │ │ │ ├── filter.go │ │ │ │ ├── options.go │ │ │ │ ├── selector.go │ │ │ │ └── strategy.go │ │ │ ├── server │ │ │ │ ├── buffer.go │ │ │ │ ├── context.go │ │ │ │ ├── debug.go │ │ │ │ ├── debug │ │ │ │ │ ├── debug.go │ │ │ │ │ └── proto │ │ │ │ │ │ ├── debug.pb.go │ │ │ │ │ │ └── debug.proto │ │ │ │ ├── extractor.go │ │ │ │ ├── handler.go │ │ │ │ ├── options.go │ │ │ │ ├── rpc_codec.go │ │ │ │ ├── rpc_handler.go │ │ │ │ ├── rpc_request.go │ │ │ │ ├── rpc_server.go │ │ │ │ ├── rpc_service.go │ │ │ │ ├── rpc_stream.go │ │ │ │ ├── server.go │ │ │ │ ├── subscriber.go │ │ │ │ └── wrapper.go │ │ │ ├── service.go │ │ │ ├── transport │ │ │ │ ├── codec │ │ │ │ │ └── codec.go │ │ │ │ ├── http │ │ │ │ │ └── http.go │ │ │ │ ├── http_transport.go │ │ │ │ ├── options.go │ │ │ │ └── transport.go │ │ │ └── wrapper.go │ │ ├── go-rcache │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── options.go │ │ │ └── rcache.go │ │ ├── mdns │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── client.go │ │ │ ├── dns_sd.go │ │ │ ├── server.go │ │ │ └── zone.go │ │ └── util │ │ │ ├── LICENSE │ │ │ └── go │ │ │ └── lib │ │ │ ├── addr │ │ │ └── addr.go │ │ │ ├── net │ │ │ └── net.go │ │ │ └── tls │ │ │ └── tls.go │ ├── miekg │ │ └── dns │ │ │ ├── AUTHORS │ │ │ ├── CONTRIBUTORS │ │ │ ├── COPYRIGHT │ │ │ ├── Gopkg.lock │ │ │ ├── Gopkg.toml │ │ │ ├── LICENSE │ │ │ ├── Makefile.fuzz │ │ │ ├── Makefile.release │ │ │ ├── README.md │ │ │ ├── client.go │ │ │ ├── clientconfig.go │ │ │ ├── compress_generate.go │ │ │ ├── dane.go │ │ │ ├── defaults.go │ │ │ ├── dns.go │ │ │ ├── dnssec.go │ │ │ ├── dnssec_keygen.go │ │ │ ├── dnssec_keyscan.go │ │ │ ├── dnssec_privkey.go │ │ │ ├── doc.go │ │ │ ├── duplicate.go │ │ │ ├── duplicate_generate.go │ │ │ ├── edns.go │ │ │ ├── format.go │ │ │ ├── fuzz.go │ │ │ ├── generate.go │ │ │ ├── labels.go │ │ │ ├── listen_go111.go │ │ │ ├── listen_go_not111.go │ │ │ ├── msg.go │ │ │ ├── msg_generate.go │ │ │ ├── msg_helpers.go │ │ │ ├── nsecx.go │ │ │ ├── privaterr.go │ │ │ ├── rawmsg.go │ │ │ ├── reverse.go │ │ │ ├── sanitize.go │ │ │ ├── scan.go │ │ │ ├── scan_rr.go │ │ │ ├── scanner.go │ │ │ ├── serve_mux.go │ │ │ ├── server.go │ │ │ ├── sig0.go │ │ │ ├── singleinflight.go │ │ │ ├── smimea.go │ │ │ ├── tlsa.go │ │ │ ├── tsig.go │ │ │ ├── types.go │ │ │ ├── types_generate.go │ │ │ ├── udp.go │ │ │ ├── udp_windows.go │ │ │ ├── update.go │ │ │ ├── version.go │ │ │ ├── xfr.go │ │ │ ├── zcompress.go │ │ │ ├── zduplicate.go │ │ │ ├── zmsg.go │ │ │ └── ztypes.go │ ├── mitchellh │ │ ├── go-homedir │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ └── homedir.go │ │ ├── hashstructure │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── go.mod │ │ │ ├── hashstructure.go │ │ │ └── include.go │ │ └── mapstructure │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── decode_hooks.go │ │ │ ├── error.go │ │ │ ├── go.mod │ │ │ └── mapstructure.go │ ├── modern-go │ │ ├── concurrent │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── executor.go │ │ │ ├── go_above_19.go │ │ │ ├── go_below_19.go │ │ │ ├── log.go │ │ │ ├── test.sh │ │ │ └── unbounded_executor.go │ │ └── reflect2 │ │ │ ├── Gopkg.lock │ │ │ ├── Gopkg.toml │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── go_above_17.go │ │ │ ├── go_above_19.go │ │ │ ├── go_below_17.go │ │ │ ├── go_below_19.go │ │ │ ├── reflect2.go │ │ │ ├── reflect2_amd64.s │ │ │ ├── reflect2_kind.go │ │ │ ├── relfect2_386.s │ │ │ ├── relfect2_amd64p32.s │ │ │ ├── relfect2_arm.s │ │ │ ├── relfect2_arm64.s │ │ │ ├── relfect2_mips64x.s │ │ │ ├── relfect2_mipsx.s │ │ │ ├── relfect2_ppc64x.s │ │ │ ├── relfect2_s390x.s │ │ │ ├── safe_field.go │ │ │ ├── safe_map.go │ │ │ ├── safe_slice.go │ │ │ ├── safe_struct.go │ │ │ ├── safe_type.go │ │ │ ├── test.sh │ │ │ ├── type_map.go │ │ │ ├── unsafe_array.go │ │ │ ├── unsafe_eface.go │ │ │ ├── unsafe_field.go │ │ │ ├── unsafe_iface.go │ │ │ ├── unsafe_link.go │ │ │ ├── unsafe_map.go │ │ │ ├── unsafe_ptr.go │ │ │ ├── unsafe_slice.go │ │ │ ├── unsafe_struct.go │ │ │ └── unsafe_type.go │ ├── pborman │ │ └── uuid │ │ │ ├── CONTRIBUTING.md │ │ │ ├── CONTRIBUTORS │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── dce.go │ │ │ ├── doc.go │ │ │ ├── go.mod │ │ │ ├── go.sum │ │ │ ├── hash.go │ │ │ ├── marshal.go │ │ │ ├── node.go │ │ │ ├── sql.go │ │ │ ├── time.go │ │ │ ├── util.go │ │ │ ├── uuid.go │ │ │ ├── version1.go │ │ │ └── version4.go │ ├── pkg │ │ └── errors │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── appveyor.yml │ │ │ ├── errors.go │ │ │ └── stack.go │ ├── pmezard │ │ └── go-difflib │ │ │ ├── LICENSE │ │ │ └── difflib │ │ │ └── difflib.go │ ├── sirupsen │ │ └── logrus │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── alt_exit.go │ │ │ ├── appveyor.yml │ │ │ ├── doc.go │ │ │ ├── entry.go │ │ │ ├── exported.go │ │ │ ├── formatter.go │ │ │ ├── go.mod │ │ │ ├── go.sum │ │ │ ├── hooks.go │ │ │ ├── json_formatter.go │ │ │ ├── logger.go │ │ │ ├── logrus.go │ │ │ ├── terminal_check_appengine.go │ │ │ ├── terminal_check_js.go │ │ │ ├── terminal_check_notappengine.go │ │ │ ├── terminal_check_windows.go │ │ │ ├── terminal_notwindows.go │ │ │ ├── terminal_windows.go │ │ │ ├── text_formatter.go │ │ │ └── writer.go │ ├── sony │ │ └── sonyflake │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ └── sonyflake.go │ ├── thinkerou │ │ └── favicon │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── favicon.go │ │ │ └── favicon.ico │ └── ugorji │ │ └── go │ │ ├── LICENSE │ │ └── codec │ │ ├── 0doc.go │ │ ├── README.md │ │ ├── binc.go │ │ ├── build.sh │ │ ├── cbor.go │ │ ├── codecgen.go │ │ ├── decode.go │ │ ├── encode.go │ │ ├── fast-path.generated.go │ │ ├── fast-path.go.tmpl │ │ ├── fast-path.not.go │ │ ├── gen-dec-array.go.tmpl │ │ ├── gen-dec-map.go.tmpl │ │ ├── gen-enc-chan.go.tmpl │ │ ├── gen-helper.generated.go │ │ ├── gen-helper.go.tmpl │ │ ├── gen.generated.go │ │ ├── gen.go │ │ ├── go.mod │ │ ├── goversion_arrayof_gte_go15.go │ │ ├── goversion_arrayof_lt_go15.go │ │ ├── goversion_makemap_gte_go19.go │ │ ├── goversion_makemap_lt_go19.go │ │ ├── goversion_unexportedembeddedptr_gte_go110.go │ │ ├── goversion_unexportedembeddedptr_lt_go110.go │ │ ├── goversion_unsupported_lt_go14.go │ │ ├── goversion_vendor_eq_go15.go │ │ ├── goversion_vendor_eq_go16.go │ │ ├── goversion_vendor_gte_go17.go │ │ ├── goversion_vendor_lt_go15.go │ │ ├── helper.go │ │ ├── helper_internal.go │ │ ├── helper_not_unsafe.go │ │ ├── helper_unsafe.go │ │ ├── json.go │ │ ├── mammoth-test.go.tmpl │ │ ├── mammoth2-test.go.tmpl │ │ ├── msgpack.go │ │ ├── rpc.go │ │ ├── simple.go │ │ ├── test-cbor-goldens.json │ │ ├── test.py │ │ └── xml.go │ ├── golang.org │ └── x │ │ ├── crypto │ │ ├── LICENSE │ │ ├── PATENTS │ │ ├── acme │ │ │ ├── acme.go │ │ │ ├── autocert │ │ │ │ ├── autocert.go │ │ │ │ ├── cache.go │ │ │ │ ├── listener.go │ │ │ │ └── renewal.go │ │ │ ├── http.go │ │ │ ├── jws.go │ │ │ └── types.go │ │ ├── ed25519 │ │ │ ├── ed25519.go │ │ │ └── internal │ │ │ │ └── edwards25519 │ │ │ │ ├── const.go │ │ │ │ └── edwards25519.go │ │ └── ssh │ │ │ └── terminal │ │ │ ├── terminal.go │ │ │ ├── util.go │ │ │ ├── util_aix.go │ │ │ ├── util_bsd.go │ │ │ ├── util_linux.go │ │ │ ├── util_plan9.go │ │ │ ├── util_solaris.go │ │ │ └── util_windows.go │ │ ├── lint │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── golint │ │ │ ├── golint.go │ │ │ ├── import.go │ │ │ └── importcomment.go │ │ └── lint.go │ │ ├── net │ │ ├── LICENSE │ │ ├── PATENTS │ │ ├── bpf │ │ │ ├── asm.go │ │ │ ├── constants.go │ │ │ ├── doc.go │ │ │ ├── instructions.go │ │ │ ├── setter.go │ │ │ ├── vm.go │ │ │ └── vm_instructions.go │ │ ├── context │ │ │ ├── context.go │ │ │ ├── go17.go │ │ │ ├── go19.go │ │ │ ├── pre_go17.go │ │ │ └── pre_go19.go │ │ ├── http │ │ │ └── httpguts │ │ │ │ ├── guts.go │ │ │ │ └── httplex.go │ │ ├── http2 │ │ │ ├── Dockerfile │ │ │ ├── Makefile │ │ │ ├── README │ │ │ ├── ciphers.go │ │ │ ├── client_conn_pool.go │ │ │ ├── configure_transport.go │ │ │ ├── databuffer.go │ │ │ ├── errors.go │ │ │ ├── flow.go │ │ │ ├── frame.go │ │ │ ├── go111.go │ │ │ ├── go16.go │ │ │ ├── go17.go │ │ │ ├── go17_not18.go │ │ │ ├── go18.go │ │ │ ├── go19.go │ │ │ ├── gotrack.go │ │ │ ├── headermap.go │ │ │ ├── hpack │ │ │ │ ├── encode.go │ │ │ │ ├── hpack.go │ │ │ │ ├── huffman.go │ │ │ │ └── tables.go │ │ │ ├── http2.go │ │ │ ├── not_go111.go │ │ │ ├── not_go16.go │ │ │ ├── not_go17.go │ │ │ ├── not_go18.go │ │ │ ├── not_go19.go │ │ │ ├── pipe.go │ │ │ ├── server.go │ │ │ ├── transport.go │ │ │ ├── write.go │ │ │ ├── writesched.go │ │ │ ├── writesched_priority.go │ │ │ └── writesched_random.go │ │ ├── idna │ │ │ ├── idna.go │ │ │ ├── punycode.go │ │ │ ├── tables.go │ │ │ ├── trie.go │ │ │ └── trieval.go │ │ ├── internal │ │ │ ├── iana │ │ │ │ ├── const.go │ │ │ │ └── gen.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 │ │ │ │ ├── empty.s │ │ │ │ ├── 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 │ │ │ │ ├── sys.go │ │ │ │ ├── sys_bsd.go │ │ │ │ ├── sys_bsdvar.go │ │ │ │ ├── sys_darwin.go │ │ │ │ ├── sys_dragonfly.go │ │ │ │ ├── sys_go1_11_darwin.go │ │ │ │ ├── sys_go1_12_darwin.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_darwin_arm64.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 │ │ ├── ipv4 │ │ │ ├── batch.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 │ │ │ ├── gen.go │ │ │ ├── genericopt.go │ │ │ ├── header.go │ │ │ ├── helper.go │ │ │ ├── iana.go │ │ │ ├── icmp.go │ │ │ ├── icmp_linux.go │ │ │ ├── icmp_stub.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 │ │ │ ├── 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 │ │ │ ├── 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 │ │ │ ├── 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 │ │ │ ├── gen.go │ │ │ ├── genericopt.go │ │ │ ├── header.go │ │ │ ├── helper.go │ │ │ ├── iana.go │ │ │ ├── icmp.go │ │ │ ├── icmp_bsd.go │ │ │ ├── icmp_linux.go │ │ │ ├── icmp_solaris.go │ │ │ ├── icmp_stub.go │ │ │ ├── icmp_windows.go │ │ │ ├── payload.go │ │ │ ├── payload_cmsg.go │ │ │ ├── payload_cmsg_go1_8.go │ │ │ ├── payload_cmsg_go1_9.go │ │ │ ├── payload_nocmsg.go │ │ │ ├── sockopt.go │ │ │ ├── sockopt_posix.go │ │ │ ├── sockopt_stub.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 │ │ │ ├── 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 │ │ └── trace │ │ │ ├── events.go │ │ │ ├── histogram.go │ │ │ ├── trace.go │ │ │ ├── trace_go16.go │ │ │ └── trace_go17.go │ │ ├── sys │ │ ├── LICENSE │ │ ├── PATENTS │ │ ├── unix │ │ │ ├── README.md │ │ │ ├── affinity_linux.go │ │ │ ├── aliases.go │ │ │ ├── asm_aix_ppc64.s │ │ │ ├── asm_darwin_386.s │ │ │ ├── asm_darwin_amd64.s │ │ │ ├── asm_darwin_arm.s │ │ │ ├── asm_darwin_arm64.s │ │ │ ├── asm_dragonfly_amd64.s │ │ │ ├── asm_freebsd_386.s │ │ │ ├── asm_freebsd_amd64.s │ │ │ ├── asm_freebsd_arm.s │ │ │ ├── asm_linux_386.s │ │ │ ├── asm_linux_amd64.s │ │ │ ├── asm_linux_arm.s │ │ │ ├── asm_linux_arm64.s │ │ │ ├── asm_linux_mips64x.s │ │ │ ├── asm_linux_mipsx.s │ │ │ ├── asm_linux_ppc64x.s │ │ │ ├── asm_linux_s390x.s │ │ │ ├── asm_netbsd_386.s │ │ │ ├── asm_netbsd_amd64.s │ │ │ ├── asm_netbsd_arm.s │ │ │ ├── asm_openbsd_386.s │ │ │ ├── asm_openbsd_amd64.s │ │ │ ├── asm_openbsd_arm.s │ │ │ ├── asm_solaris_amd64.s │ │ │ ├── bluetooth_linux.go │ │ │ ├── cap_freebsd.go │ │ │ ├── constants.go │ │ │ ├── dev_aix_ppc.go │ │ │ ├── dev_aix_ppc64.go │ │ │ ├── dev_darwin.go │ │ │ ├── dev_dragonfly.go │ │ │ ├── dev_freebsd.go │ │ │ ├── dev_linux.go │ │ │ ├── dev_netbsd.go │ │ │ ├── dev_openbsd.go │ │ │ ├── dirent.go │ │ │ ├── endian_big.go │ │ │ ├── endian_little.go │ │ │ ├── env_unix.go │ │ │ ├── errors_freebsd_386.go │ │ │ ├── errors_freebsd_amd64.go │ │ │ ├── errors_freebsd_arm.go │ │ │ ├── fcntl.go │ │ │ ├── fcntl_linux_32bit.go │ │ │ ├── gccgo.go │ │ │ ├── gccgo_c.c │ │ │ ├── gccgo_linux_amd64.go │ │ │ ├── ioctl.go │ │ │ ├── mkall.sh │ │ │ ├── mkerrors.sh │ │ │ ├── mkpost.go │ │ │ ├── mksyscall.pl │ │ │ ├── mksyscall_aix_ppc.pl │ │ │ ├── mksyscall_aix_ppc64.pl │ │ │ ├── mksyscall_solaris.pl │ │ │ ├── mksysctl_openbsd.pl │ │ │ ├── mksysnum_darwin.pl │ │ │ ├── mksysnum_dragonfly.pl │ │ │ ├── mksysnum_freebsd.pl │ │ │ ├── mksysnum_netbsd.pl │ │ │ ├── mksysnum_openbsd.pl │ │ │ ├── openbsd_pledge.go │ │ │ ├── openbsd_unveil.go │ │ │ ├── pagesize_unix.go │ │ │ ├── race.go │ │ │ ├── race0.go │ │ │ ├── sockcmsg_linux.go │ │ │ ├── sockcmsg_unix.go │ │ │ ├── str.go │ │ │ ├── syscall.go │ │ │ ├── syscall_aix.go │ │ │ ├── syscall_aix_ppc.go │ │ │ ├── syscall_aix_ppc64.go │ │ │ ├── syscall_bsd.go │ │ │ ├── syscall_darwin.go │ │ │ ├── syscall_darwin_386.go │ │ │ ├── syscall_darwin_amd64.go │ │ │ ├── syscall_darwin_arm.go │ │ │ ├── syscall_darwin_arm64.go │ │ │ ├── syscall_dragonfly.go │ │ │ ├── syscall_dragonfly_amd64.go │ │ │ ├── syscall_freebsd.go │ │ │ ├── syscall_freebsd_386.go │ │ │ ├── syscall_freebsd_amd64.go │ │ │ ├── syscall_freebsd_arm.go │ │ │ ├── syscall_linux.go │ │ │ ├── syscall_linux_386.go │ │ │ ├── syscall_linux_amd64.go │ │ │ ├── syscall_linux_amd64_gc.go │ │ │ ├── syscall_linux_arm.go │ │ │ ├── syscall_linux_arm64.go │ │ │ ├── syscall_linux_gc.go │ │ │ ├── syscall_linux_gc_386.go │ │ │ ├── syscall_linux_gccgo_386.go │ │ │ ├── syscall_linux_gccgo_arm.go │ │ │ ├── syscall_linux_mips64x.go │ │ │ ├── syscall_linux_mipsx.go │ │ │ ├── syscall_linux_ppc64x.go │ │ │ ├── syscall_linux_riscv64.go │ │ │ ├── syscall_linux_s390x.go │ │ │ ├── syscall_linux_sparc64.go │ │ │ ├── syscall_netbsd.go │ │ │ ├── syscall_netbsd_386.go │ │ │ ├── syscall_netbsd_amd64.go │ │ │ ├── syscall_netbsd_arm.go │ │ │ ├── syscall_openbsd.go │ │ │ ├── syscall_openbsd_386.go │ │ │ ├── syscall_openbsd_amd64.go │ │ │ ├── syscall_openbsd_arm.go │ │ │ ├── syscall_solaris.go │ │ │ ├── syscall_solaris_amd64.go │ │ │ ├── syscall_unix.go │ │ │ ├── syscall_unix_gc.go │ │ │ ├── timestruct.go │ │ │ ├── types_aix.go │ │ │ ├── types_darwin.go │ │ │ ├── types_dragonfly.go │ │ │ ├── types_freebsd.go │ │ │ ├── types_netbsd.go │ │ │ ├── types_openbsd.go │ │ │ ├── types_solaris.go │ │ │ ├── xattr_bsd.go │ │ │ ├── zerrors_aix_ppc.go │ │ │ ├── zerrors_aix_ppc64.go │ │ │ ├── zerrors_darwin_386.go │ │ │ ├── zerrors_darwin_amd64.go │ │ │ ├── zerrors_darwin_arm.go │ │ │ ├── zerrors_darwin_arm64.go │ │ │ ├── zerrors_dragonfly_amd64.go │ │ │ ├── zerrors_freebsd_386.go │ │ │ ├── zerrors_freebsd_amd64.go │ │ │ ├── zerrors_freebsd_arm.go │ │ │ ├── zerrors_linux_386.go │ │ │ ├── zerrors_linux_amd64.go │ │ │ ├── zerrors_linux_arm.go │ │ │ ├── zerrors_linux_arm64.go │ │ │ ├── zerrors_linux_mips.go │ │ │ ├── zerrors_linux_mips64.go │ │ │ ├── zerrors_linux_mips64le.go │ │ │ ├── zerrors_linux_mipsle.go │ │ │ ├── zerrors_linux_ppc64.go │ │ │ ├── zerrors_linux_ppc64le.go │ │ │ ├── zerrors_linux_riscv64.go │ │ │ ├── zerrors_linux_s390x.go │ │ │ ├── zerrors_linux_sparc64.go │ │ │ ├── zerrors_netbsd_386.go │ │ │ ├── zerrors_netbsd_amd64.go │ │ │ ├── zerrors_netbsd_arm.go │ │ │ ├── zerrors_openbsd_386.go │ │ │ ├── zerrors_openbsd_amd64.go │ │ │ ├── zerrors_openbsd_arm.go │ │ │ ├── zerrors_solaris_amd64.go │ │ │ ├── zptrace386_linux.go │ │ │ ├── zptracearm_linux.go │ │ │ ├── zptracemips_linux.go │ │ │ ├── zptracemipsle_linux.go │ │ │ ├── zsyscall_aix_ppc.go │ │ │ ├── zsyscall_aix_ppc64.go │ │ │ ├── zsyscall_aix_ppc64_gc.go │ │ │ ├── zsyscall_aix_ppc64_gccgo.go │ │ │ ├── zsyscall_darwin_386.go │ │ │ ├── zsyscall_darwin_amd64.go │ │ │ ├── zsyscall_darwin_arm.go │ │ │ ├── zsyscall_darwin_arm64.go │ │ │ ├── zsyscall_dragonfly_amd64.go │ │ │ ├── zsyscall_freebsd_386.go │ │ │ ├── zsyscall_freebsd_amd64.go │ │ │ ├── zsyscall_freebsd_arm.go │ │ │ ├── zsyscall_linux_386.go │ │ │ ├── zsyscall_linux_amd64.go │ │ │ ├── zsyscall_linux_arm.go │ │ │ ├── zsyscall_linux_arm64.go │ │ │ ├── zsyscall_linux_mips.go │ │ │ ├── zsyscall_linux_mips64.go │ │ │ ├── zsyscall_linux_mips64le.go │ │ │ ├── zsyscall_linux_mipsle.go │ │ │ ├── zsyscall_linux_ppc64.go │ │ │ ├── zsyscall_linux_ppc64le.go │ │ │ ├── zsyscall_linux_riscv64.go │ │ │ ├── zsyscall_linux_s390x.go │ │ │ ├── zsyscall_linux_sparc64.go │ │ │ ├── zsyscall_netbsd_386.go │ │ │ ├── zsyscall_netbsd_amd64.go │ │ │ ├── zsyscall_netbsd_arm.go │ │ │ ├── zsyscall_openbsd_386.go │ │ │ ├── zsyscall_openbsd_amd64.go │ │ │ ├── zsyscall_openbsd_arm.go │ │ │ ├── zsyscall_solaris_amd64.go │ │ │ ├── zsysctl_openbsd_386.go │ │ │ ├── zsysctl_openbsd_amd64.go │ │ │ ├── zsysctl_openbsd_arm.go │ │ │ ├── zsysnum_darwin_386.go │ │ │ ├── zsysnum_darwin_amd64.go │ │ │ ├── zsysnum_darwin_arm.go │ │ │ ├── zsysnum_darwin_arm64.go │ │ │ ├── zsysnum_dragonfly_amd64.go │ │ │ ├── zsysnum_freebsd_386.go │ │ │ ├── zsysnum_freebsd_amd64.go │ │ │ ├── zsysnum_freebsd_arm.go │ │ │ ├── zsysnum_linux_386.go │ │ │ ├── zsysnum_linux_amd64.go │ │ │ ├── zsysnum_linux_arm.go │ │ │ ├── zsysnum_linux_arm64.go │ │ │ ├── zsysnum_linux_mips.go │ │ │ ├── zsysnum_linux_mips64.go │ │ │ ├── zsysnum_linux_mips64le.go │ │ │ ├── zsysnum_linux_mipsle.go │ │ │ ├── zsysnum_linux_ppc64.go │ │ │ ├── zsysnum_linux_ppc64le.go │ │ │ ├── zsysnum_linux_riscv64.go │ │ │ ├── zsysnum_linux_s390x.go │ │ │ ├── zsysnum_linux_sparc64.go │ │ │ ├── zsysnum_netbsd_386.go │ │ │ ├── zsysnum_netbsd_amd64.go │ │ │ ├── zsysnum_netbsd_arm.go │ │ │ ├── zsysnum_openbsd_386.go │ │ │ ├── zsysnum_openbsd_amd64.go │ │ │ ├── zsysnum_openbsd_arm.go │ │ │ ├── ztypes_aix_ppc.go │ │ │ ├── ztypes_aix_ppc64.go │ │ │ ├── ztypes_darwin_386.go │ │ │ ├── ztypes_darwin_amd64.go │ │ │ ├── ztypes_darwin_arm.go │ │ │ ├── ztypes_darwin_arm64.go │ │ │ ├── ztypes_dragonfly_amd64.go │ │ │ ├── ztypes_freebsd_386.go │ │ │ ├── ztypes_freebsd_amd64.go │ │ │ ├── ztypes_freebsd_arm.go │ │ │ ├── ztypes_linux_386.go │ │ │ ├── ztypes_linux_amd64.go │ │ │ ├── ztypes_linux_arm.go │ │ │ ├── ztypes_linux_arm64.go │ │ │ ├── ztypes_linux_mips.go │ │ │ ├── ztypes_linux_mips64.go │ │ │ ├── ztypes_linux_mips64le.go │ │ │ ├── ztypes_linux_mipsle.go │ │ │ ├── ztypes_linux_ppc64.go │ │ │ ├── ztypes_linux_ppc64le.go │ │ │ ├── ztypes_linux_riscv64.go │ │ │ ├── ztypes_linux_s390x.go │ │ │ ├── ztypes_linux_sparc64.go │ │ │ ├── ztypes_netbsd_386.go │ │ │ ├── ztypes_netbsd_amd64.go │ │ │ ├── ztypes_netbsd_arm.go │ │ │ ├── ztypes_openbsd_386.go │ │ │ ├── ztypes_openbsd_amd64.go │ │ │ ├── ztypes_openbsd_arm.go │ │ │ └── ztypes_solaris_amd64.go │ │ └── windows │ │ │ ├── aliases.go │ │ │ ├── asm_windows_386.s │ │ │ ├── asm_windows_amd64.s │ │ │ ├── asm_windows_arm.s │ │ │ ├── dll_windows.go │ │ │ ├── env_windows.go │ │ │ ├── eventlog.go │ │ │ ├── exec_windows.go │ │ │ ├── memory_windows.go │ │ │ ├── mksyscall.go │ │ │ ├── race.go │ │ │ ├── race0.go │ │ │ ├── security_windows.go │ │ │ ├── service.go │ │ │ ├── str.go │ │ │ ├── syscall.go │ │ │ ├── syscall_windows.go │ │ │ ├── types_windows.go │ │ │ ├── types_windows_386.go │ │ │ ├── types_windows_amd64.go │ │ │ ├── types_windows_arm.go │ │ │ └── zsyscall_windows.go │ │ ├── text │ │ ├── LICENSE │ │ ├── PATENTS │ │ ├── secure │ │ │ └── bidirule │ │ │ │ ├── bidirule.go │ │ │ │ ├── bidirule10.0.0.go │ │ │ │ └── bidirule9.0.0.go │ │ ├── transform │ │ │ └── transform.go │ │ └── unicode │ │ │ ├── bidi │ │ │ ├── bidi.go │ │ │ ├── bracket.go │ │ │ ├── core.go │ │ │ ├── gen.go │ │ │ ├── gen_ranges.go │ │ │ ├── gen_trieval.go │ │ │ ├── prop.go │ │ │ ├── tables10.0.0.go │ │ │ ├── tables9.0.0.go │ │ │ └── trieval.go │ │ │ └── norm │ │ │ ├── composition.go │ │ │ ├── forminfo.go │ │ │ ├── input.go │ │ │ ├── iter.go │ │ │ ├── maketables.go │ │ │ ├── normalize.go │ │ │ ├── readwriter.go │ │ │ ├── tables10.0.0.go │ │ │ ├── tables9.0.0.go │ │ │ ├── transform.go │ │ │ ├── trie.go │ │ │ └── triegen.go │ │ └── tools │ │ ├── LICENSE │ │ ├── PATENTS │ │ └── go │ │ ├── ast │ │ └── astutil │ │ │ ├── enclosing.go │ │ │ ├── imports.go │ │ │ ├── rewrite.go │ │ │ └── util.go │ │ ├── gcexportdata │ │ ├── gcexportdata.go │ │ ├── importer.go │ │ └── main.go │ │ └── internal │ │ └── gcimporter │ │ ├── bexport.go │ │ ├── bimport.go │ │ ├── exportdata.go │ │ ├── gcimporter.go │ │ ├── iimport.go │ │ ├── newInterface10.go │ │ └── newInterface11.go │ ├── google.golang.org │ ├── genproto │ │ ├── LICENSE │ │ └── googleapis │ │ │ └── rpc │ │ │ └── status │ │ │ └── status.pb.go │ └── grpc │ │ ├── AUTHORS │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README.md │ │ ├── backoff.go │ │ ├── balancer.go │ │ ├── balancer │ │ ├── balancer.go │ │ ├── base │ │ │ ├── balancer.go │ │ │ └── base.go │ │ └── roundrobin │ │ │ └── roundrobin.go │ │ ├── balancer_conn_wrappers.go │ │ ├── balancer_v1_wrapper.go │ │ ├── binarylog │ │ └── grpc_binarylog_v1 │ │ │ └── binarylog.pb.go │ │ ├── call.go │ │ ├── clientconn.go │ │ ├── codec.go │ │ ├── codegen.sh │ │ ├── codes │ │ ├── code_string.go │ │ └── codes.go │ │ ├── connectivity │ │ └── connectivity.go │ │ ├── credentials │ │ ├── credentials.go │ │ ├── go16.go │ │ ├── go17.go │ │ ├── go18.go │ │ ├── go19.go │ │ └── internal │ │ │ ├── syscallconn.go │ │ │ └── syscallconn_appengine.go │ │ ├── dialoptions.go │ │ ├── doc.go │ │ ├── encoding │ │ ├── encoding.go │ │ └── proto │ │ │ └── proto.go │ │ ├── go.mod │ │ ├── go.sum │ │ ├── go16.go │ │ ├── go17.go │ │ ├── grpclog │ │ ├── grpclog.go │ │ ├── logger.go │ │ └── loggerv2.go │ │ ├── install_gae.sh │ │ ├── interceptor.go │ │ ├── internal │ │ ├── backoff │ │ │ └── backoff.go │ │ ├── binarylog │ │ │ ├── binarylog.go │ │ │ ├── binarylog_testutil.go │ │ │ ├── env_config.go │ │ │ ├── method_logger.go │ │ │ ├── regenerate.sh │ │ │ ├── sink.go │ │ │ └── util.go │ │ ├── channelz │ │ │ ├── funcs.go │ │ │ ├── types.go │ │ │ ├── types_linux.go │ │ │ ├── types_nonlinux.go │ │ │ ├── util_linux.go │ │ │ ├── util_linux_go19.go │ │ │ ├── util_nonlinux.go │ │ │ └── util_nonlinux_pre_go19.go │ │ ├── envconfig │ │ │ └── envconfig.go │ │ ├── grpcrand │ │ │ └── grpcrand.go │ │ ├── grpcsync │ │ │ └── event.go │ │ ├── internal.go │ │ ├── syscall │ │ │ ├── syscall_linux.go │ │ │ └── syscall_nonlinux.go │ │ └── transport │ │ │ ├── bdp_estimator.go │ │ │ ├── controlbuf.go │ │ │ ├── defaults.go │ │ │ ├── flowcontrol.go │ │ │ ├── go16.go │ │ │ ├── go17.go │ │ │ ├── handler_server.go │ │ │ ├── http2_client.go │ │ │ ├── http2_server.go │ │ │ ├── http_util.go │ │ │ ├── log.go │ │ │ └── transport.go │ │ ├── keepalive │ │ └── keepalive.go │ │ ├── metadata │ │ └── metadata.go │ │ ├── naming │ │ ├── dns_resolver.go │ │ ├── go17.go │ │ ├── go18.go │ │ └── naming.go │ │ ├── peer │ │ └── peer.go │ │ ├── picker_wrapper.go │ │ ├── pickfirst.go │ │ ├── proxy.go │ │ ├── resolver │ │ ├── dns │ │ │ ├── dns_resolver.go │ │ │ ├── go19.go │ │ │ └── pre_go19.go │ │ ├── passthrough │ │ │ └── passthrough.go │ │ └── resolver.go │ │ ├── resolver_conn_wrapper.go │ │ ├── rpc_util.go │ │ ├── server.go │ │ ├── service_config.go │ │ ├── stats │ │ ├── handlers.go │ │ └── stats.go │ │ ├── status │ │ ├── go16.go │ │ ├── go17.go │ │ └── status.go │ │ ├── stream.go │ │ ├── tap │ │ └── tap.go │ │ ├── trace.go │ │ ├── version.go │ │ └── vet.sh │ ├── gopkg.in │ ├── go-playground │ │ └── validator.v8 │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── baked_in.go │ │ │ ├── cache.go │ │ │ ├── doc.go │ │ │ ├── logo.png │ │ │ ├── regexes.go │ │ │ ├── util.go │ │ │ └── validator.go │ └── yaml.v2 │ │ ├── LICENSE │ │ ├── LICENSE.libyaml │ │ ├── NOTICE │ │ ├── README.md │ │ ├── apic.go │ │ ├── decode.go │ │ ├── emitterc.go │ │ ├── encode.go │ │ ├── go.mod │ │ ├── parserc.go │ │ ├── readerc.go │ │ ├── resolve.go │ │ ├── scannerc.go │ │ ├── sorter.go │ │ ├── writerc.go │ │ ├── yaml.go │ │ ├── yamlh.go │ │ └── yamlprivateh.go │ └── vendor.json ├── service-strategy ├── Dockerfile ├── Makefile ├── README.md ├── client │ └── client.go ├── conf │ ├── bitesla-config.ini │ ├── bitesla-env-dev.ini │ ├── bitesla-env-prod.ini │ ├── bitesla-env-test.ini │ └── conf.go ├── db │ ├── db.go │ └── strategy_mapper.go ├── handler │ ├── strategy_handler.go │ └── strategy_resposity.go ├── main.go ├── orm │ ├── strategy.go │ └── table2struct │ │ └── main.go ├── proto │ ├── strategy.micro.go │ ├── strategy.pb.go │ └── strategy.proto └── vendor │ ├── github.com │ ├── armon │ │ └── go-metrics │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── const_unix.go │ │ │ ├── const_windows.go │ │ │ ├── inmem.go │ │ │ ├── inmem_endpoint.go │ │ │ ├── inmem_signal.go │ │ │ ├── metrics.go │ │ │ ├── sink.go │ │ │ ├── start.go │ │ │ ├── statsd.go │ │ │ └── statsite.go │ ├── garyburd │ │ └── redigo │ │ │ ├── LICENSE │ │ │ ├── internal │ │ │ └── commandinfo.go │ │ │ └── redis │ │ │ ├── conn.go │ │ │ ├── doc.go │ │ │ ├── go16.go │ │ │ ├── go17.go │ │ │ ├── go18.go │ │ │ ├── log.go │ │ │ ├── pool.go │ │ │ ├── pool17.go │ │ │ ├── pubsub.go │ │ │ ├── redis.go │ │ │ ├── reply.go │ │ │ ├── scan.go │ │ │ └── script.go │ ├── go-log │ │ └── log │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── log.go │ │ │ └── log │ │ │ └── log.go │ ├── go-sql-driver │ │ └── mysql │ │ │ ├── AUTHORS │ │ │ ├── CHANGELOG.md │ │ │ ├── CONTRIBUTING.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── appengine.go │ │ │ ├── auth.go │ │ │ ├── buffer.go │ │ │ ├── collations.go │ │ │ ├── connection.go │ │ │ ├── const.go │ │ │ ├── driver.go │ │ │ ├── dsn.go │ │ │ ├── errors.go │ │ │ ├── fields.go │ │ │ ├── infile.go │ │ │ ├── packets.go │ │ │ ├── result.go │ │ │ ├── rows.go │ │ │ ├── statement.go │ │ │ ├── transaction.go │ │ │ └── utils.go │ ├── golang │ │ └── protobuf │ │ │ ├── LICENSE │ │ │ └── proto │ │ │ ├── clone.go │ │ │ ├── decode.go │ │ │ ├── deprecated.go │ │ │ ├── discard.go │ │ │ ├── encode.go │ │ │ ├── equal.go │ │ │ ├── extensions.go │ │ │ ├── lib.go │ │ │ ├── message_set.go │ │ │ ├── pointer_reflect.go │ │ │ ├── pointer_unsafe.go │ │ │ ├── properties.go │ │ │ ├── table_marshal.go │ │ │ ├── table_merge.go │ │ │ ├── table_unmarshal.go │ │ │ ├── text.go │ │ │ └── text_parser.go │ ├── google │ │ └── uuid │ │ │ ├── CONTRIBUTING.md │ │ │ ├── CONTRIBUTORS │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── dce.go │ │ │ ├── doc.go │ │ │ ├── go.mod │ │ │ ├── hash.go │ │ │ ├── marshal.go │ │ │ ├── node.go │ │ │ ├── node_js.go │ │ │ ├── node_net.go │ │ │ ├── sql.go │ │ │ ├── time.go │ │ │ ├── util.go │ │ │ ├── uuid.go │ │ │ ├── version1.go │ │ │ └── version4.go │ ├── hashicorp │ │ ├── consul │ │ │ ├── LICENSE │ │ │ ├── NOTICE.md │ │ │ ├── api │ │ │ │ ├── README.md │ │ │ │ ├── acl.go │ │ │ │ ├── agent.go │ │ │ │ ├── api.go │ │ │ │ ├── catalog.go │ │ │ │ ├── connect.go │ │ │ │ ├── connect_ca.go │ │ │ │ ├── connect_intention.go │ │ │ │ ├── coordinate.go │ │ │ │ ├── event.go │ │ │ │ ├── health.go │ │ │ │ ├── kv.go │ │ │ │ ├── lock.go │ │ │ │ ├── operator.go │ │ │ │ ├── operator_area.go │ │ │ │ ├── operator_autopilot.go │ │ │ │ ├── operator_keyring.go │ │ │ │ ├── operator_raft.go │ │ │ │ ├── operator_segment.go │ │ │ │ ├── prepared_query.go │ │ │ │ ├── raw.go │ │ │ │ ├── semaphore.go │ │ │ │ ├── session.go │ │ │ │ ├── snapshot.go │ │ │ │ └── status.go │ │ │ └── watch │ │ │ │ ├── funcs.go │ │ │ │ ├── plan.go │ │ │ │ └── watch.go │ │ ├── go-cleanhttp │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── cleanhttp.go │ │ │ ├── doc.go │ │ │ └── handlers.go │ │ ├── go-immutable-radix │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── edges.go │ │ │ ├── iradix.go │ │ │ ├── iter.go │ │ │ ├── node.go │ │ │ └── raw_iter.go │ │ ├── go-rootcerts │ │ │ ├── LICENSE │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── doc.go │ │ │ ├── rootcerts.go │ │ │ ├── rootcerts_base.go │ │ │ └── rootcerts_darwin.go │ │ ├── golang-lru │ │ │ ├── LICENSE │ │ │ └── simplelru │ │ │ │ └── lru.go │ │ └── serf │ │ │ ├── LICENSE │ │ │ └── coordinate │ │ │ ├── client.go │ │ │ ├── config.go │ │ │ ├── coordinate.go │ │ │ └── phantom.go │ ├── jason-wj │ │ └── bitesla │ │ │ └── common │ │ │ ├── constants │ │ │ ├── omit.go │ │ │ └── redis_key.go │ │ │ ├── errs │ │ │ ├── code.go │ │ │ ├── errors.go │ │ │ └── msg.go │ │ │ ├── iniconfig │ │ │ └── conf.go │ │ │ ├── logger │ │ │ ├── daterot │ │ │ │ ├── daterot.go │ │ │ │ └── vars.go │ │ │ └── logger.go │ │ │ └── util │ │ │ ├── cache │ │ │ └── redis.go │ │ │ ├── idgenerate │ │ │ └── id.go │ │ │ └── mysql │ │ │ └── converter │ │ │ ├── table2struct.go │ │ │ └── version.go │ ├── jinzhu │ │ ├── gorm │ │ │ ├── License │ │ │ ├── README.md │ │ │ ├── association.go │ │ │ ├── callback.go │ │ │ ├── callback_create.go │ │ │ ├── callback_delete.go │ │ │ ├── callback_query.go │ │ │ ├── callback_query_preload.go │ │ │ ├── callback_row_query.go │ │ │ ├── callback_save.go │ │ │ ├── callback_update.go │ │ │ ├── dialect.go │ │ │ ├── dialect_common.go │ │ │ ├── dialect_mysql.go │ │ │ ├── dialect_postgres.go │ │ │ ├── dialect_sqlite3.go │ │ │ ├── dialects │ │ │ │ └── mysql │ │ │ │ │ └── mysql.go │ │ │ ├── docker-compose.yml │ │ │ ├── errors.go │ │ │ ├── field.go │ │ │ ├── interface.go │ │ │ ├── join_table_handler.go │ │ │ ├── logger.go │ │ │ ├── main.go │ │ │ ├── model.go │ │ │ ├── model_struct.go │ │ │ ├── naming.go │ │ │ ├── scope.go │ │ │ ├── search.go │ │ │ ├── test_all.sh │ │ │ ├── utils.go │ │ │ └── wercker.yml │ │ └── inflection │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── inflections.go │ │ │ └── wercker.yml │ ├── konsorten │ │ └── go-windows-terminal-sequences │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── go.mod │ │ │ └── sequences.go │ ├── lestrrat-go │ │ ├── file-rotatelogs │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── event.go │ │ │ ├── interface.go │ │ │ ├── internal │ │ │ │ └── option │ │ │ │ │ └── option.go │ │ │ ├── options.go │ │ │ └── rotatelogs.go │ │ └── strftime │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── strftime.go │ │ │ └── writer.go │ ├── micro │ │ ├── cli │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── app.go │ │ │ ├── appveyor.yml │ │ │ ├── category.go │ │ │ ├── cli.go │ │ │ ├── command.go │ │ │ ├── context.go │ │ │ ├── flag.go │ │ │ └── help.go │ │ ├── go-log │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ └── log.go │ │ ├── go-micro │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── broker │ │ │ │ ├── broker.go │ │ │ │ ├── codec │ │ │ │ │ ├── codec.go │ │ │ │ │ └── json │ │ │ │ │ │ └── json.go │ │ │ │ ├── http │ │ │ │ │ └── http.go │ │ │ │ ├── http_broker.go │ │ │ │ └── options.go │ │ │ ├── client │ │ │ │ ├── backoff.go │ │ │ │ ├── buffer.go │ │ │ │ ├── client.go │ │ │ │ ├── context.go │ │ │ │ ├── options.go │ │ │ │ ├── retry.go │ │ │ │ ├── rpc_client.go │ │ │ │ ├── rpc_codec.go │ │ │ │ ├── rpc_message.go │ │ │ │ ├── rpc_pool.go │ │ │ │ ├── rpc_request.go │ │ │ │ ├── rpc_stream.go │ │ │ │ └── wrapper.go │ │ │ ├── cmd │ │ │ │ ├── cmd.go │ │ │ │ └── options.go │ │ │ ├── codec │ │ │ │ ├── codec.go │ │ │ │ ├── jsonrpc │ │ │ │ │ ├── client.go │ │ │ │ │ ├── jsonrpc.go │ │ │ │ │ └── server.go │ │ │ │ └── protorpc │ │ │ │ │ ├── envelope.pb.go │ │ │ │ │ ├── envelope.proto │ │ │ │ │ ├── netstring.go │ │ │ │ │ └── protorpc.go │ │ │ ├── errors │ │ │ │ └── errors.go │ │ │ ├── function.go │ │ │ ├── go-micro.go │ │ │ ├── go-micro.png │ │ │ ├── metadata │ │ │ │ └── metadata.go │ │ │ ├── options.go │ │ │ ├── publisher.go │ │ │ ├── registry │ │ │ │ ├── consul │ │ │ │ │ ├── consul.go │ │ │ │ │ └── options.go │ │ │ │ ├── consul_registry.go │ │ │ │ ├── consul_watcher.go │ │ │ │ ├── encoding.go │ │ │ │ ├── mdns │ │ │ │ │ ├── encoding.go │ │ │ │ │ ├── mdns.go │ │ │ │ │ └── watcher.go │ │ │ │ ├── options.go │ │ │ │ ├── registry.go │ │ │ │ ├── service.go │ │ │ │ └── watcher.go │ │ │ ├── selector │ │ │ │ ├── cache │ │ │ │ │ ├── cache.go │ │ │ │ │ └── options.go │ │ │ │ ├── default.go │ │ │ │ ├── filter.go │ │ │ │ ├── options.go │ │ │ │ ├── selector.go │ │ │ │ └── strategy.go │ │ │ ├── server │ │ │ │ ├── buffer.go │ │ │ │ ├── context.go │ │ │ │ ├── debug.go │ │ │ │ ├── debug │ │ │ │ │ ├── debug.go │ │ │ │ │ └── proto │ │ │ │ │ │ ├── debug.pb.go │ │ │ │ │ │ └── debug.proto │ │ │ │ ├── extractor.go │ │ │ │ ├── handler.go │ │ │ │ ├── options.go │ │ │ │ ├── rpc_codec.go │ │ │ │ ├── rpc_handler.go │ │ │ │ ├── rpc_request.go │ │ │ │ ├── rpc_server.go │ │ │ │ ├── rpc_service.go │ │ │ │ ├── rpc_stream.go │ │ │ │ ├── server.go │ │ │ │ ├── subscriber.go │ │ │ │ └── wrapper.go │ │ │ ├── service.go │ │ │ ├── transport │ │ │ │ ├── codec │ │ │ │ │ └── codec.go │ │ │ │ ├── http │ │ │ │ │ └── http.go │ │ │ │ ├── http_transport.go │ │ │ │ ├── options.go │ │ │ │ └── transport.go │ │ │ └── wrapper.go │ │ ├── go-rcache │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── options.go │ │ │ └── rcache.go │ │ ├── mdns │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── client.go │ │ │ ├── dns_sd.go │ │ │ ├── server.go │ │ │ └── zone.go │ │ └── util │ │ │ ├── LICENSE │ │ │ └── go │ │ │ └── lib │ │ │ ├── addr │ │ │ └── addr.go │ │ │ ├── net │ │ │ └── net.go │ │ │ └── tls │ │ │ └── tls.go │ ├── miekg │ │ └── dns │ │ │ ├── AUTHORS │ │ │ ├── CONTRIBUTORS │ │ │ ├── COPYRIGHT │ │ │ ├── Gopkg.lock │ │ │ ├── Gopkg.toml │ │ │ ├── LICENSE │ │ │ ├── Makefile.fuzz │ │ │ ├── Makefile.release │ │ │ ├── README.md │ │ │ ├── client.go │ │ │ ├── clientconfig.go │ │ │ ├── compress_generate.go │ │ │ ├── dane.go │ │ │ ├── defaults.go │ │ │ ├── dns.go │ │ │ ├── dnssec.go │ │ │ ├── dnssec_keygen.go │ │ │ ├── dnssec_keyscan.go │ │ │ ├── dnssec_privkey.go │ │ │ ├── doc.go │ │ │ ├── duplicate.go │ │ │ ├── duplicate_generate.go │ │ │ ├── edns.go │ │ │ ├── format.go │ │ │ ├── fuzz.go │ │ │ ├── generate.go │ │ │ ├── labels.go │ │ │ ├── listen_go111.go │ │ │ ├── listen_go_not111.go │ │ │ ├── msg.go │ │ │ ├── msg_generate.go │ │ │ ├── msg_helpers.go │ │ │ ├── nsecx.go │ │ │ ├── privaterr.go │ │ │ ├── rawmsg.go │ │ │ ├── reverse.go │ │ │ ├── sanitize.go │ │ │ ├── scan.go │ │ │ ├── scan_rr.go │ │ │ ├── scanner.go │ │ │ ├── serve_mux.go │ │ │ ├── server.go │ │ │ ├── sig0.go │ │ │ ├── singleinflight.go │ │ │ ├── smimea.go │ │ │ ├── tlsa.go │ │ │ ├── tsig.go │ │ │ ├── types.go │ │ │ ├── types_generate.go │ │ │ ├── udp.go │ │ │ ├── udp_windows.go │ │ │ ├── update.go │ │ │ ├── version.go │ │ │ ├── xfr.go │ │ │ ├── zcompress.go │ │ │ ├── zduplicate.go │ │ │ ├── zmsg.go │ │ │ └── ztypes.go │ ├── mitchellh │ │ ├── go-homedir │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ └── homedir.go │ │ ├── hashstructure │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── go.mod │ │ │ ├── hashstructure.go │ │ │ └── include.go │ │ └── mapstructure │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── decode_hooks.go │ │ │ ├── error.go │ │ │ ├── go.mod │ │ │ └── mapstructure.go │ ├── pborman │ │ └── uuid │ │ │ ├── CONTRIBUTING.md │ │ │ ├── CONTRIBUTORS │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── dce.go │ │ │ ├── doc.go │ │ │ ├── go.mod │ │ │ ├── go.sum │ │ │ ├── hash.go │ │ │ ├── marshal.go │ │ │ ├── node.go │ │ │ ├── sql.go │ │ │ ├── time.go │ │ │ ├── util.go │ │ │ ├── uuid.go │ │ │ ├── version1.go │ │ │ └── version4.go │ ├── pkg │ │ └── errors │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── appveyor.yml │ │ │ ├── errors.go │ │ │ └── stack.go │ ├── sirupsen │ │ └── logrus │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── alt_exit.go │ │ │ ├── appveyor.yml │ │ │ ├── doc.go │ │ │ ├── entry.go │ │ │ ├── exported.go │ │ │ ├── formatter.go │ │ │ ├── go.mod │ │ │ ├── go.sum │ │ │ ├── hooks.go │ │ │ ├── json_formatter.go │ │ │ ├── logger.go │ │ │ ├── logrus.go │ │ │ ├── terminal_check_appengine.go │ │ │ ├── terminal_check_js.go │ │ │ ├── terminal_check_notappengine.go │ │ │ ├── terminal_check_windows.go │ │ │ ├── terminal_notwindows.go │ │ │ ├── terminal_windows.go │ │ │ ├── text_formatter.go │ │ │ └── writer.go │ └── sony │ │ └── sonyflake │ │ ├── LICENSE │ │ ├── README.md │ │ └── sonyflake.go │ ├── golang.org │ └── x │ │ ├── crypto │ │ ├── LICENSE │ │ ├── PATENTS │ │ ├── ed25519 │ │ │ ├── ed25519.go │ │ │ └── internal │ │ │ │ └── edwards25519 │ │ │ │ ├── const.go │ │ │ │ └── edwards25519.go │ │ └── ssh │ │ │ └── terminal │ │ │ ├── terminal.go │ │ │ ├── util.go │ │ │ ├── util_aix.go │ │ │ ├── util_bsd.go │ │ │ ├── util_linux.go │ │ │ ├── util_plan9.go │ │ │ ├── util_solaris.go │ │ │ └── util_windows.go │ │ ├── net │ │ ├── LICENSE │ │ ├── PATENTS │ │ ├── bpf │ │ │ ├── asm.go │ │ │ ├── constants.go │ │ │ ├── doc.go │ │ │ ├── instructions.go │ │ │ ├── setter.go │ │ │ ├── vm.go │ │ │ └── vm_instructions.go │ │ ├── context │ │ │ ├── context.go │ │ │ ├── go17.go │ │ │ ├── go19.go │ │ │ ├── pre_go17.go │ │ │ └── pre_go19.go │ │ ├── internal │ │ │ ├── iana │ │ │ │ ├── const.go │ │ │ │ └── gen.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 │ │ │ │ ├── empty.s │ │ │ │ ├── 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 │ │ │ │ ├── sys.go │ │ │ │ ├── sys_bsd.go │ │ │ │ ├── sys_bsdvar.go │ │ │ │ ├── sys_darwin.go │ │ │ │ ├── sys_dragonfly.go │ │ │ │ ├── sys_go1_11_darwin.go │ │ │ │ ├── sys_go1_12_darwin.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_darwin_arm64.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 │ │ ├── ipv4 │ │ │ ├── batch.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 │ │ │ ├── gen.go │ │ │ ├── genericopt.go │ │ │ ├── header.go │ │ │ ├── helper.go │ │ │ ├── iana.go │ │ │ ├── icmp.go │ │ │ ├── icmp_linux.go │ │ │ ├── icmp_stub.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 │ │ │ ├── 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 │ │ │ ├── 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 │ │ │ ├── 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 │ │ │ ├── gen.go │ │ │ ├── genericopt.go │ │ │ ├── header.go │ │ │ ├── helper.go │ │ │ ├── iana.go │ │ │ ├── icmp.go │ │ │ ├── icmp_bsd.go │ │ │ ├── icmp_linux.go │ │ │ ├── icmp_solaris.go │ │ │ ├── icmp_stub.go │ │ │ ├── icmp_windows.go │ │ │ ├── payload.go │ │ │ ├── payload_cmsg.go │ │ │ ├── payload_cmsg_go1_8.go │ │ │ ├── payload_cmsg_go1_9.go │ │ │ ├── payload_nocmsg.go │ │ │ ├── sockopt.go │ │ │ ├── sockopt_posix.go │ │ │ ├── sockopt_stub.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 │ │ │ ├── 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 │ │ └── sys │ │ ├── LICENSE │ │ ├── PATENTS │ │ ├── unix │ │ ├── README.md │ │ ├── affinity_linux.go │ │ ├── aliases.go │ │ ├── asm_aix_ppc64.s │ │ ├── asm_darwin_386.s │ │ ├── asm_darwin_amd64.s │ │ ├── asm_darwin_arm.s │ │ ├── asm_darwin_arm64.s │ │ ├── asm_dragonfly_amd64.s │ │ ├── asm_freebsd_386.s │ │ ├── asm_freebsd_amd64.s │ │ ├── asm_freebsd_arm.s │ │ ├── asm_linux_386.s │ │ ├── asm_linux_amd64.s │ │ ├── asm_linux_arm.s │ │ ├── asm_linux_arm64.s │ │ ├── asm_linux_mips64x.s │ │ ├── asm_linux_mipsx.s │ │ ├── asm_linux_ppc64x.s │ │ ├── asm_linux_s390x.s │ │ ├── asm_netbsd_386.s │ │ ├── asm_netbsd_amd64.s │ │ ├── asm_netbsd_arm.s │ │ ├── asm_openbsd_386.s │ │ ├── asm_openbsd_amd64.s │ │ ├── asm_openbsd_arm.s │ │ ├── asm_solaris_amd64.s │ │ ├── bluetooth_linux.go │ │ ├── cap_freebsd.go │ │ ├── constants.go │ │ ├── dev_aix_ppc.go │ │ ├── dev_aix_ppc64.go │ │ ├── dev_darwin.go │ │ ├── dev_dragonfly.go │ │ ├── dev_freebsd.go │ │ ├── dev_linux.go │ │ ├── dev_netbsd.go │ │ ├── dev_openbsd.go │ │ ├── dirent.go │ │ ├── endian_big.go │ │ ├── endian_little.go │ │ ├── env_unix.go │ │ ├── errors_freebsd_386.go │ │ ├── errors_freebsd_amd64.go │ │ ├── errors_freebsd_arm.go │ │ ├── fcntl.go │ │ ├── fcntl_linux_32bit.go │ │ ├── gccgo.go │ │ ├── gccgo_c.c │ │ ├── gccgo_linux_amd64.go │ │ ├── ioctl.go │ │ ├── mkall.sh │ │ ├── mkerrors.sh │ │ ├── mkpost.go │ │ ├── mksyscall.pl │ │ ├── mksyscall_aix_ppc.pl │ │ ├── mksyscall_aix_ppc64.pl │ │ ├── mksyscall_solaris.pl │ │ ├── mksysctl_openbsd.pl │ │ ├── mksysnum_darwin.pl │ │ ├── mksysnum_dragonfly.pl │ │ ├── mksysnum_freebsd.pl │ │ ├── mksysnum_netbsd.pl │ │ ├── mksysnum_openbsd.pl │ │ ├── openbsd_pledge.go │ │ ├── openbsd_unveil.go │ │ ├── pagesize_unix.go │ │ ├── race.go │ │ ├── race0.go │ │ ├── sockcmsg_linux.go │ │ ├── sockcmsg_unix.go │ │ ├── str.go │ │ ├── syscall.go │ │ ├── syscall_aix.go │ │ ├── syscall_aix_ppc.go │ │ ├── syscall_aix_ppc64.go │ │ ├── syscall_bsd.go │ │ ├── syscall_darwin.go │ │ ├── syscall_darwin_386.go │ │ ├── syscall_darwin_amd64.go │ │ ├── syscall_darwin_arm.go │ │ ├── syscall_darwin_arm64.go │ │ ├── syscall_dragonfly.go │ │ ├── syscall_dragonfly_amd64.go │ │ ├── syscall_freebsd.go │ │ ├── syscall_freebsd_386.go │ │ ├── syscall_freebsd_amd64.go │ │ ├── syscall_freebsd_arm.go │ │ ├── syscall_linux.go │ │ ├── syscall_linux_386.go │ │ ├── syscall_linux_amd64.go │ │ ├── syscall_linux_amd64_gc.go │ │ ├── syscall_linux_arm.go │ │ ├── syscall_linux_arm64.go │ │ ├── syscall_linux_gc.go │ │ ├── syscall_linux_gc_386.go │ │ ├── syscall_linux_gccgo_386.go │ │ ├── syscall_linux_gccgo_arm.go │ │ ├── syscall_linux_mips64x.go │ │ ├── syscall_linux_mipsx.go │ │ ├── syscall_linux_ppc64x.go │ │ ├── syscall_linux_riscv64.go │ │ ├── syscall_linux_s390x.go │ │ ├── syscall_linux_sparc64.go │ │ ├── syscall_netbsd.go │ │ ├── syscall_netbsd_386.go │ │ ├── syscall_netbsd_amd64.go │ │ ├── syscall_netbsd_arm.go │ │ ├── syscall_openbsd.go │ │ ├── syscall_openbsd_386.go │ │ ├── syscall_openbsd_amd64.go │ │ ├── syscall_openbsd_arm.go │ │ ├── syscall_solaris.go │ │ ├── syscall_solaris_amd64.go │ │ ├── syscall_unix.go │ │ ├── syscall_unix_gc.go │ │ ├── timestruct.go │ │ ├── types_aix.go │ │ ├── types_darwin.go │ │ ├── types_dragonfly.go │ │ ├── types_freebsd.go │ │ ├── types_netbsd.go │ │ ├── types_openbsd.go │ │ ├── types_solaris.go │ │ ├── xattr_bsd.go │ │ ├── zerrors_aix_ppc.go │ │ ├── zerrors_aix_ppc64.go │ │ ├── zerrors_darwin_386.go │ │ ├── zerrors_darwin_amd64.go │ │ ├── zerrors_darwin_arm.go │ │ ├── zerrors_darwin_arm64.go │ │ ├── zerrors_dragonfly_amd64.go │ │ ├── zerrors_freebsd_386.go │ │ ├── zerrors_freebsd_amd64.go │ │ ├── zerrors_freebsd_arm.go │ │ ├── zerrors_linux_386.go │ │ ├── zerrors_linux_amd64.go │ │ ├── zerrors_linux_arm.go │ │ ├── zerrors_linux_arm64.go │ │ ├── zerrors_linux_mips.go │ │ ├── zerrors_linux_mips64.go │ │ ├── zerrors_linux_mips64le.go │ │ ├── zerrors_linux_mipsle.go │ │ ├── zerrors_linux_ppc64.go │ │ ├── zerrors_linux_ppc64le.go │ │ ├── zerrors_linux_riscv64.go │ │ ├── zerrors_linux_s390x.go │ │ ├── zerrors_linux_sparc64.go │ │ ├── zerrors_netbsd_386.go │ │ ├── zerrors_netbsd_amd64.go │ │ ├── zerrors_netbsd_arm.go │ │ ├── zerrors_openbsd_386.go │ │ ├── zerrors_openbsd_amd64.go │ │ ├── zerrors_openbsd_arm.go │ │ ├── zerrors_solaris_amd64.go │ │ ├── zptrace386_linux.go │ │ ├── zptracearm_linux.go │ │ ├── zptracemips_linux.go │ │ ├── zptracemipsle_linux.go │ │ ├── zsyscall_aix_ppc.go │ │ ├── zsyscall_aix_ppc64.go │ │ ├── zsyscall_aix_ppc64_gc.go │ │ ├── zsyscall_aix_ppc64_gccgo.go │ │ ├── zsyscall_darwin_386.go │ │ ├── zsyscall_darwin_amd64.go │ │ ├── zsyscall_darwin_arm.go │ │ ├── zsyscall_darwin_arm64.go │ │ ├── zsyscall_dragonfly_amd64.go │ │ ├── zsyscall_freebsd_386.go │ │ ├── zsyscall_freebsd_amd64.go │ │ ├── zsyscall_freebsd_arm.go │ │ ├── zsyscall_linux_386.go │ │ ├── zsyscall_linux_amd64.go │ │ ├── zsyscall_linux_arm.go │ │ ├── zsyscall_linux_arm64.go │ │ ├── zsyscall_linux_mips.go │ │ ├── zsyscall_linux_mips64.go │ │ ├── zsyscall_linux_mips64le.go │ │ ├── zsyscall_linux_mipsle.go │ │ ├── zsyscall_linux_ppc64.go │ │ ├── zsyscall_linux_ppc64le.go │ │ ├── zsyscall_linux_riscv64.go │ │ ├── zsyscall_linux_s390x.go │ │ ├── zsyscall_linux_sparc64.go │ │ ├── zsyscall_netbsd_386.go │ │ ├── zsyscall_netbsd_amd64.go │ │ ├── zsyscall_netbsd_arm.go │ │ ├── zsyscall_openbsd_386.go │ │ ├── zsyscall_openbsd_amd64.go │ │ ├── zsyscall_openbsd_arm.go │ │ ├── zsyscall_solaris_amd64.go │ │ ├── zsysctl_openbsd_386.go │ │ ├── zsysctl_openbsd_amd64.go │ │ ├── zsysctl_openbsd_arm.go │ │ ├── zsysnum_darwin_386.go │ │ ├── zsysnum_darwin_amd64.go │ │ ├── zsysnum_darwin_arm.go │ │ ├── zsysnum_darwin_arm64.go │ │ ├── zsysnum_dragonfly_amd64.go │ │ ├── zsysnum_freebsd_386.go │ │ ├── zsysnum_freebsd_amd64.go │ │ ├── zsysnum_freebsd_arm.go │ │ ├── zsysnum_linux_386.go │ │ ├── zsysnum_linux_amd64.go │ │ ├── zsysnum_linux_arm.go │ │ ├── zsysnum_linux_arm64.go │ │ ├── zsysnum_linux_mips.go │ │ ├── zsysnum_linux_mips64.go │ │ ├── zsysnum_linux_mips64le.go │ │ ├── zsysnum_linux_mipsle.go │ │ ├── zsysnum_linux_ppc64.go │ │ ├── zsysnum_linux_ppc64le.go │ │ ├── zsysnum_linux_riscv64.go │ │ ├── zsysnum_linux_s390x.go │ │ ├── zsysnum_linux_sparc64.go │ │ ├── zsysnum_netbsd_386.go │ │ ├── zsysnum_netbsd_amd64.go │ │ ├── zsysnum_netbsd_arm.go │ │ ├── zsysnum_openbsd_386.go │ │ ├── zsysnum_openbsd_amd64.go │ │ ├── zsysnum_openbsd_arm.go │ │ ├── ztypes_aix_ppc.go │ │ ├── ztypes_aix_ppc64.go │ │ ├── ztypes_darwin_386.go │ │ ├── ztypes_darwin_amd64.go │ │ ├── ztypes_darwin_arm.go │ │ ├── ztypes_darwin_arm64.go │ │ ├── ztypes_dragonfly_amd64.go │ │ ├── ztypes_freebsd_386.go │ │ ├── ztypes_freebsd_amd64.go │ │ ├── ztypes_freebsd_arm.go │ │ ├── ztypes_linux_386.go │ │ ├── ztypes_linux_amd64.go │ │ ├── ztypes_linux_arm.go │ │ ├── ztypes_linux_arm64.go │ │ ├── ztypes_linux_mips.go │ │ ├── ztypes_linux_mips64.go │ │ ├── ztypes_linux_mips64le.go │ │ ├── ztypes_linux_mipsle.go │ │ ├── ztypes_linux_ppc64.go │ │ ├── ztypes_linux_ppc64le.go │ │ ├── ztypes_linux_riscv64.go │ │ ├── ztypes_linux_s390x.go │ │ ├── ztypes_linux_sparc64.go │ │ ├── ztypes_netbsd_386.go │ │ ├── ztypes_netbsd_amd64.go │ │ ├── ztypes_netbsd_arm.go │ │ ├── ztypes_openbsd_386.go │ │ ├── ztypes_openbsd_amd64.go │ │ ├── ztypes_openbsd_arm.go │ │ └── ztypes_solaris_amd64.go │ │ └── windows │ │ ├── aliases.go │ │ ├── asm_windows_386.s │ │ ├── asm_windows_amd64.s │ │ ├── asm_windows_arm.s │ │ ├── dll_windows.go │ │ ├── env_windows.go │ │ ├── eventlog.go │ │ ├── exec_windows.go │ │ ├── memory_windows.go │ │ ├── mksyscall.go │ │ ├── race.go │ │ ├── race0.go │ │ ├── security_windows.go │ │ ├── service.go │ │ ├── str.go │ │ ├── syscall.go │ │ ├── syscall_windows.go │ │ ├── types_windows.go │ │ ├── types_windows_386.go │ │ ├── types_windows_amd64.go │ │ ├── types_windows_arm.go │ │ └── zsyscall_windows.go │ └── vendor.json ├── service-trader ├── Dockerfile ├── Makefile ├── README.md ├── client │ └── client.go ├── conf │ ├── bitesla-config.ini │ ├── bitesla-env-dev.ini │ ├── bitesla-env-prod.ini │ ├── bitesla-env-test.ini │ └── conf.go ├── constant │ └── constant.go ├── db │ ├── db.go │ └── trader_mapper.go ├── example │ └── main.go ├── handler │ ├── trader_handler.go │ └── trader_resposity.go ├── main.go ├── model │ └── global.go ├── orm │ ├── table2struct │ │ └── main.go │ └── trader.go ├── proto │ ├── trader.micro.go │ ├── trader.pb.go │ └── trader.proto ├── trader │ └── trader_queue.go └── vendor │ ├── github.com │ ├── armon │ │ └── go-metrics │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── const_unix.go │ │ │ ├── const_windows.go │ │ │ ├── inmem.go │ │ │ ├── inmem_endpoint.go │ │ │ ├── inmem_signal.go │ │ │ ├── metrics.go │ │ │ ├── sink.go │ │ │ ├── start.go │ │ │ ├── statsd.go │ │ │ └── statsite.go │ ├── dgrijalva │ │ └── jwt-go │ │ │ ├── LICENSE │ │ │ ├── MIGRATION_GUIDE.md │ │ │ ├── README.md │ │ │ ├── VERSION_HISTORY.md │ │ │ ├── claims.go │ │ │ ├── doc.go │ │ │ ├── ecdsa.go │ │ │ ├── ecdsa_utils.go │ │ │ ├── errors.go │ │ │ ├── hmac.go │ │ │ ├── map_claims.go │ │ │ ├── none.go │ │ │ ├── parser.go │ │ │ ├── rsa.go │ │ │ ├── rsa_pss.go │ │ │ ├── rsa_utils.go │ │ │ ├── signing_method.go │ │ │ └── token.go │ ├── garyburd │ │ └── redigo │ │ │ ├── LICENSE │ │ │ ├── internal │ │ │ └── commandinfo.go │ │ │ └── redis │ │ │ ├── conn.go │ │ │ ├── doc.go │ │ │ ├── go16.go │ │ │ ├── go17.go │ │ │ ├── go18.go │ │ │ ├── log.go │ │ │ ├── pool.go │ │ │ ├── pool17.go │ │ │ ├── pubsub.go │ │ │ ├── redis.go │ │ │ ├── reply.go │ │ │ ├── scan.go │ │ │ └── script.go │ ├── go-log │ │ └── log │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── log.go │ │ │ └── log │ │ │ └── log.go │ ├── go-sql-driver │ │ └── mysql │ │ │ ├── AUTHORS │ │ │ ├── CHANGELOG.md │ │ │ ├── CONTRIBUTING.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── appengine.go │ │ │ ├── auth.go │ │ │ ├── buffer.go │ │ │ ├── collations.go │ │ │ ├── connection.go │ │ │ ├── const.go │ │ │ ├── driver.go │ │ │ ├── dsn.go │ │ │ ├── errors.go │ │ │ ├── fields.go │ │ │ ├── infile.go │ │ │ ├── packets.go │ │ │ ├── result.go │ │ │ ├── rows.go │ │ │ ├── statement.go │ │ │ ├── transaction.go │ │ │ └── utils.go │ ├── golang │ │ ├── protobuf │ │ │ ├── LICENSE │ │ │ └── proto │ │ │ │ ├── clone.go │ │ │ │ ├── decode.go │ │ │ │ ├── deprecated.go │ │ │ │ ├── discard.go │ │ │ │ ├── encode.go │ │ │ │ ├── equal.go │ │ │ │ ├── extensions.go │ │ │ │ ├── lib.go │ │ │ │ ├── message_set.go │ │ │ │ ├── pointer_reflect.go │ │ │ │ ├── pointer_unsafe.go │ │ │ │ ├── properties.go │ │ │ │ ├── table_marshal.go │ │ │ │ ├── table_merge.go │ │ │ │ ├── table_unmarshal.go │ │ │ │ ├── text.go │ │ │ │ └── text_parser.go │ │ └── snappy │ │ │ ├── AUTHORS │ │ │ ├── CONTRIBUTORS │ │ │ ├── LICENSE │ │ │ ├── README │ │ │ ├── decode.go │ │ │ ├── decode_amd64.go │ │ │ ├── decode_amd64.s │ │ │ ├── decode_other.go │ │ │ ├── encode.go │ │ │ ├── encode_amd64.go │ │ │ ├── encode_amd64.s │ │ │ ├── encode_other.go │ │ │ └── snappy.go │ ├── google │ │ └── uuid │ │ │ ├── CONTRIBUTING.md │ │ │ ├── CONTRIBUTORS │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── dce.go │ │ │ ├── doc.go │ │ │ ├── go.mod │ │ │ ├── hash.go │ │ │ ├── marshal.go │ │ │ ├── node.go │ │ │ ├── node_js.go │ │ │ ├── node_net.go │ │ │ ├── sql.go │ │ │ ├── time.go │ │ │ ├── util.go │ │ │ ├── uuid.go │ │ │ ├── version1.go │ │ │ └── version4.go │ ├── gorilla │ │ └── websocket │ │ │ ├── AUTHORS │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── client.go │ │ │ ├── client_clone.go │ │ │ ├── client_clone_legacy.go │ │ │ ├── compression.go │ │ │ ├── conn.go │ │ │ ├── conn_write.go │ │ │ ├── conn_write_legacy.go │ │ │ ├── doc.go │ │ │ ├── json.go │ │ │ ├── mask.go │ │ │ ├── mask_safe.go │ │ │ ├── prepared.go │ │ │ ├── proxy.go │ │ │ ├── server.go │ │ │ ├── trace.go │ │ │ ├── trace_17.go │ │ │ ├── util.go │ │ │ └── x_net_proxy.go │ ├── hashicorp │ │ ├── consul │ │ │ ├── LICENSE │ │ │ ├── NOTICE.md │ │ │ ├── api │ │ │ │ ├── README.md │ │ │ │ ├── acl.go │ │ │ │ ├── agent.go │ │ │ │ ├── api.go │ │ │ │ ├── catalog.go │ │ │ │ ├── connect.go │ │ │ │ ├── connect_ca.go │ │ │ │ ├── connect_intention.go │ │ │ │ ├── coordinate.go │ │ │ │ ├── event.go │ │ │ │ ├── health.go │ │ │ │ ├── kv.go │ │ │ │ ├── lock.go │ │ │ │ ├── operator.go │ │ │ │ ├── operator_area.go │ │ │ │ ├── operator_autopilot.go │ │ │ │ ├── operator_keyring.go │ │ │ │ ├── operator_raft.go │ │ │ │ ├── operator_segment.go │ │ │ │ ├── prepared_query.go │ │ │ │ ├── raw.go │ │ │ │ ├── semaphore.go │ │ │ │ ├── session.go │ │ │ │ ├── snapshot.go │ │ │ │ └── status.go │ │ │ └── watch │ │ │ │ ├── funcs.go │ │ │ │ ├── plan.go │ │ │ │ └── watch.go │ │ ├── go-cleanhttp │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── cleanhttp.go │ │ │ ├── doc.go │ │ │ └── handlers.go │ │ ├── go-immutable-radix │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── edges.go │ │ │ ├── iradix.go │ │ │ ├── iter.go │ │ │ ├── node.go │ │ │ └── raw_iter.go │ │ ├── go-rootcerts │ │ │ ├── LICENSE │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── doc.go │ │ │ ├── rootcerts.go │ │ │ ├── rootcerts_base.go │ │ │ └── rootcerts_darwin.go │ │ ├── golang-lru │ │ │ ├── LICENSE │ │ │ └── simplelru │ │ │ │ └── lru.go │ │ └── serf │ │ │ ├── LICENSE │ │ │ └── coordinate │ │ │ ├── client.go │ │ │ ├── config.go │ │ │ ├── coordinate.go │ │ │ └── phantom.go │ ├── jason-wj │ │ └── bitesla │ │ │ ├── common │ │ │ ├── constants │ │ │ │ ├── omit.go │ │ │ │ └── redis_key.go │ │ │ ├── errs │ │ │ │ ├── code.go │ │ │ │ ├── errors.go │ │ │ │ └── msg.go │ │ │ ├── iniconfig │ │ │ │ └── conf.go │ │ │ ├── logger │ │ │ │ ├── daterot │ │ │ │ │ ├── daterot.go │ │ │ │ │ └── vars.go │ │ │ │ └── logger.go │ │ │ ├── net │ │ │ │ └── http │ │ │ │ │ ├── HttpUtils.go │ │ │ │ │ └── httpclient.go │ │ │ └── util │ │ │ │ ├── cache │ │ │ │ └── redis.go │ │ │ │ ├── common.go │ │ │ │ ├── convert.go │ │ │ │ ├── idgenerate │ │ │ │ └── id.go │ │ │ │ ├── mysql │ │ │ │ └── converter │ │ │ │ │ ├── table2struct.go │ │ │ │ │ └── version.go │ │ │ │ ├── string.go │ │ │ │ └── uuid_token_util.go │ │ │ └── service │ │ │ ├── service-exchange │ │ │ ├── client │ │ │ │ └── client.go │ │ │ ├── exchange │ │ │ │ ├── Const.go │ │ │ │ ├── HttpUtils.go │ │ │ │ ├── ParamSignUtils.go │ │ │ │ ├── Utils.go │ │ │ │ ├── api.go │ │ │ │ └── websocket.go │ │ │ └── proto │ │ │ │ ├── exchange.micro.go │ │ │ │ ├── exchange.pb.go │ │ │ │ ├── exchange.proto │ │ │ │ └── exchange_extend.go │ │ │ └── service-strategy │ │ │ ├── client │ │ │ └── client.go │ │ │ └── proto │ │ │ ├── strategy.micro.go │ │ │ ├── strategy.pb.go │ │ │ └── strategy.proto │ ├── jinzhu │ │ ├── gorm │ │ │ ├── License │ │ │ ├── README.md │ │ │ ├── association.go │ │ │ ├── callback.go │ │ │ ├── callback_create.go │ │ │ ├── callback_delete.go │ │ │ ├── callback_query.go │ │ │ ├── callback_query_preload.go │ │ │ ├── callback_row_query.go │ │ │ ├── callback_save.go │ │ │ ├── callback_update.go │ │ │ ├── dialect.go │ │ │ ├── dialect_common.go │ │ │ ├── dialect_mysql.go │ │ │ ├── dialect_postgres.go │ │ │ ├── dialect_sqlite3.go │ │ │ ├── dialects │ │ │ │ └── mysql │ │ │ │ │ └── mysql.go │ │ │ ├── docker-compose.yml │ │ │ ├── errors.go │ │ │ ├── field.go │ │ │ ├── interface.go │ │ │ ├── join_table_handler.go │ │ │ ├── logger.go │ │ │ ├── main.go │ │ │ ├── model.go │ │ │ ├── model_struct.go │ │ │ ├── naming.go │ │ │ ├── scope.go │ │ │ ├── search.go │ │ │ ├── test_all.sh │ │ │ ├── utils.go │ │ │ └── wercker.yml │ │ └── inflection │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── inflections.go │ │ │ └── wercker.yml │ ├── konsorten │ │ └── go-windows-terminal-sequences │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── go.mod │ │ │ └── sequences.go │ ├── lestrrat-go │ │ ├── file-rotatelogs │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── event.go │ │ │ ├── interface.go │ │ │ ├── internal │ │ │ │ └── option │ │ │ │ │ └── option.go │ │ │ ├── options.go │ │ │ └── rotatelogs.go │ │ └── strftime │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── strftime.go │ │ │ └── writer.go │ ├── micro │ │ ├── cli │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── app.go │ │ │ ├── appveyor.yml │ │ │ ├── category.go │ │ │ ├── cli.go │ │ │ ├── command.go │ │ │ ├── context.go │ │ │ ├── flag.go │ │ │ └── help.go │ │ ├── go-log │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ └── log.go │ │ ├── go-micro │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── broker │ │ │ │ ├── broker.go │ │ │ │ ├── codec │ │ │ │ │ ├── codec.go │ │ │ │ │ └── json │ │ │ │ │ │ └── json.go │ │ │ │ ├── http │ │ │ │ │ └── http.go │ │ │ │ ├── http_broker.go │ │ │ │ └── options.go │ │ │ ├── client │ │ │ │ ├── backoff.go │ │ │ │ ├── buffer.go │ │ │ │ ├── client.go │ │ │ │ ├── context.go │ │ │ │ ├── options.go │ │ │ │ ├── retry.go │ │ │ │ ├── rpc_client.go │ │ │ │ ├── rpc_codec.go │ │ │ │ ├── rpc_message.go │ │ │ │ ├── rpc_pool.go │ │ │ │ ├── rpc_request.go │ │ │ │ ├── rpc_stream.go │ │ │ │ └── wrapper.go │ │ │ ├── cmd │ │ │ │ ├── cmd.go │ │ │ │ └── options.go │ │ │ ├── codec │ │ │ │ ├── codec.go │ │ │ │ ├── jsonrpc │ │ │ │ │ ├── client.go │ │ │ │ │ ├── jsonrpc.go │ │ │ │ │ └── server.go │ │ │ │ └── protorpc │ │ │ │ │ ├── envelope.pb.go │ │ │ │ │ ├── envelope.proto │ │ │ │ │ ├── netstring.go │ │ │ │ │ └── protorpc.go │ │ │ ├── errors │ │ │ │ └── errors.go │ │ │ ├── function.go │ │ │ ├── go-micro.go │ │ │ ├── go-micro.png │ │ │ ├── metadata │ │ │ │ └── metadata.go │ │ │ ├── options.go │ │ │ ├── publisher.go │ │ │ ├── registry │ │ │ │ ├── consul │ │ │ │ │ ├── consul.go │ │ │ │ │ └── options.go │ │ │ │ ├── consul_registry.go │ │ │ │ ├── consul_watcher.go │ │ │ │ ├── encoding.go │ │ │ │ ├── mdns │ │ │ │ │ ├── encoding.go │ │ │ │ │ ├── mdns.go │ │ │ │ │ └── watcher.go │ │ │ │ ├── options.go │ │ │ │ ├── registry.go │ │ │ │ ├── service.go │ │ │ │ └── watcher.go │ │ │ ├── selector │ │ │ │ ├── cache │ │ │ │ │ ├── cache.go │ │ │ │ │ └── options.go │ │ │ │ ├── default.go │ │ │ │ ├── filter.go │ │ │ │ ├── options.go │ │ │ │ ├── selector.go │ │ │ │ └── strategy.go │ │ │ ├── server │ │ │ │ ├── buffer.go │ │ │ │ ├── context.go │ │ │ │ ├── debug.go │ │ │ │ ├── debug │ │ │ │ │ ├── debug.go │ │ │ │ │ └── proto │ │ │ │ │ │ ├── debug.pb.go │ │ │ │ │ │ └── debug.proto │ │ │ │ ├── extractor.go │ │ │ │ ├── handler.go │ │ │ │ ├── options.go │ │ │ │ ├── rpc_codec.go │ │ │ │ ├── rpc_handler.go │ │ │ │ ├── rpc_request.go │ │ │ │ ├── rpc_server.go │ │ │ │ ├── rpc_service.go │ │ │ │ ├── rpc_stream.go │ │ │ │ ├── server.go │ │ │ │ ├── subscriber.go │ │ │ │ └── wrapper.go │ │ │ ├── service.go │ │ │ ├── transport │ │ │ │ ├── codec │ │ │ │ │ └── codec.go │ │ │ │ ├── http │ │ │ │ │ └── http.go │ │ │ │ ├── http_transport.go │ │ │ │ ├── options.go │ │ │ │ └── transport.go │ │ │ └── wrapper.go │ │ ├── go-rcache │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── options.go │ │ │ └── rcache.go │ │ ├── mdns │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── client.go │ │ │ ├── dns_sd.go │ │ │ ├── server.go │ │ │ └── zone.go │ │ └── util │ │ │ ├── LICENSE │ │ │ └── go │ │ │ └── lib │ │ │ ├── addr │ │ │ └── addr.go │ │ │ ├── net │ │ │ └── net.go │ │ │ └── tls │ │ │ └── tls.go │ ├── miekg │ │ └── dns │ │ │ ├── AUTHORS │ │ │ ├── CONTRIBUTORS │ │ │ ├── COPYRIGHT │ │ │ ├── Gopkg.lock │ │ │ ├── Gopkg.toml │ │ │ ├── LICENSE │ │ │ ├── Makefile.fuzz │ │ │ ├── Makefile.release │ │ │ ├── README.md │ │ │ ├── client.go │ │ │ ├── clientconfig.go │ │ │ ├── compress_generate.go │ │ │ ├── dane.go │ │ │ ├── defaults.go │ │ │ ├── dns.go │ │ │ ├── dnssec.go │ │ │ ├── dnssec_keygen.go │ │ │ ├── dnssec_keyscan.go │ │ │ ├── dnssec_privkey.go │ │ │ ├── doc.go │ │ │ ├── duplicate.go │ │ │ ├── duplicate_generate.go │ │ │ ├── edns.go │ │ │ ├── format.go │ │ │ ├── fuzz.go │ │ │ ├── generate.go │ │ │ ├── labels.go │ │ │ ├── listen_go111.go │ │ │ ├── listen_go_not111.go │ │ │ ├── msg.go │ │ │ ├── msg_generate.go │ │ │ ├── msg_helpers.go │ │ │ ├── nsecx.go │ │ │ ├── privaterr.go │ │ │ ├── rawmsg.go │ │ │ ├── reverse.go │ │ │ ├── sanitize.go │ │ │ ├── scan.go │ │ │ ├── scan_rr.go │ │ │ ├── scanner.go │ │ │ ├── serve_mux.go │ │ │ ├── server.go │ │ │ ├── sig0.go │ │ │ ├── singleinflight.go │ │ │ ├── smimea.go │ │ │ ├── tlsa.go │ │ │ ├── tsig.go │ │ │ ├── types.go │ │ │ ├── types_generate.go │ │ │ ├── udp.go │ │ │ ├── udp_windows.go │ │ │ ├── update.go │ │ │ ├── version.go │ │ │ ├── xfr.go │ │ │ ├── zcompress.go │ │ │ ├── zduplicate.go │ │ │ ├── zmsg.go │ │ │ └── ztypes.go │ ├── mitchellh │ │ ├── go-homedir │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ └── homedir.go │ │ ├── hashstructure │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── go.mod │ │ │ ├── hashstructure.go │ │ │ └── include.go │ │ └── mapstructure │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── decode_hooks.go │ │ │ ├── error.go │ │ │ ├── go.mod │ │ │ └── mapstructure.go │ ├── nsqio │ │ └── go-nsq │ │ │ ├── ChangeLog.md │ │ │ ├── Gopkg.lock │ │ │ ├── Gopkg.toml │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── UPGRADING.md │ │ │ ├── api_request.go │ │ │ ├── command.go │ │ │ ├── config.go │ │ │ ├── config_flag.go │ │ │ ├── conn.go │ │ │ ├── consumer.go │ │ │ ├── delegates.go │ │ │ ├── errors.go │ │ │ ├── message.go │ │ │ ├── producer.go │ │ │ ├── protocol.go │ │ │ ├── states.go │ │ │ ├── test.sh │ │ │ └── version.go │ ├── pborman │ │ └── uuid │ │ │ ├── CONTRIBUTING.md │ │ │ ├── CONTRIBUTORS │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── dce.go │ │ │ ├── doc.go │ │ │ ├── go.mod │ │ │ ├── go.sum │ │ │ ├── hash.go │ │ │ ├── marshal.go │ │ │ ├── node.go │ │ │ ├── sql.go │ │ │ ├── time.go │ │ │ ├── util.go │ │ │ ├── uuid.go │ │ │ ├── version1.go │ │ │ └── version4.go │ ├── pkg │ │ └── errors │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── appveyor.yml │ │ │ ├── errors.go │ │ │ └── stack.go │ ├── robertkrimen │ │ └── otto │ │ │ ├── DESIGN.markdown │ │ │ ├── LICENSE │ │ │ ├── Makefile │ │ │ ├── README.markdown │ │ │ ├── ast │ │ │ ├── README.markdown │ │ │ ├── comments.go │ │ │ ├── node.go │ │ │ └── walk.go │ │ │ ├── builtin.go │ │ │ ├── builtin_array.go │ │ │ ├── builtin_boolean.go │ │ │ ├── builtin_date.go │ │ │ ├── builtin_error.go │ │ │ ├── builtin_function.go │ │ │ ├── builtin_json.go │ │ │ ├── builtin_math.go │ │ │ ├── builtin_number.go │ │ │ ├── builtin_object.go │ │ │ ├── builtin_regexp.go │ │ │ ├── builtin_string.go │ │ │ ├── clone.go │ │ │ ├── cmpl.go │ │ │ ├── cmpl_evaluate.go │ │ │ ├── cmpl_evaluate_expression.go │ │ │ ├── cmpl_evaluate_statement.go │ │ │ ├── cmpl_parse.go │ │ │ ├── console.go │ │ │ ├── dbg.go │ │ │ ├── dbg │ │ │ └── dbg.go │ │ │ ├── error.go │ │ │ ├── evaluate.go │ │ │ ├── file │ │ │ ├── README.markdown │ │ │ └── file.go │ │ │ ├── global.go │ │ │ ├── inline.go │ │ │ ├── inline.pl │ │ │ ├── object.go │ │ │ ├── object_class.go │ │ │ ├── otto.go │ │ │ ├── otto_.go │ │ │ ├── parser │ │ │ ├── Makefile │ │ │ ├── README.markdown │ │ │ ├── dbg.go │ │ │ ├── error.go │ │ │ ├── expression.go │ │ │ ├── lexer.go │ │ │ ├── parser.go │ │ │ ├── regexp.go │ │ │ ├── scope.go │ │ │ └── statement.go │ │ │ ├── property.go │ │ │ ├── registry │ │ │ ├── README.markdown │ │ │ └── registry.go │ │ │ ├── result.go │ │ │ ├── runtime.go │ │ │ ├── scope.go │ │ │ ├── script.go │ │ │ ├── stash.go │ │ │ ├── token │ │ │ ├── Makefile │ │ │ ├── README.markdown │ │ │ ├── token.go │ │ │ ├── token_const.go │ │ │ └── tokenfmt │ │ │ ├── type_arguments.go │ │ │ ├── type_array.go │ │ │ ├── type_boolean.go │ │ │ ├── type_date.go │ │ │ ├── type_error.go │ │ │ ├── type_function.go │ │ │ ├── type_go_array.go │ │ │ ├── type_go_map.go │ │ │ ├── type_go_slice.go │ │ │ ├── type_go_struct.go │ │ │ ├── type_number.go │ │ │ ├── type_reference.go │ │ │ ├── type_regexp.go │ │ │ ├── type_string.go │ │ │ ├── value.go │ │ │ ├── value_boolean.go │ │ │ ├── value_number.go │ │ │ ├── value_primitive.go │ │ │ └── value_string.go │ ├── satori │ │ └── go.uuid │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── codec.go │ │ │ ├── generator.go │ │ │ ├── sql.go │ │ │ └── uuid.go │ ├── sirupsen │ │ └── logrus │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── alt_exit.go │ │ │ ├── appveyor.yml │ │ │ ├── doc.go │ │ │ ├── entry.go │ │ │ ├── exported.go │ │ │ ├── formatter.go │ │ │ ├── go.mod │ │ │ ├── go.sum │ │ │ ├── hooks.go │ │ │ ├── json_formatter.go │ │ │ ├── logger.go │ │ │ ├── logrus.go │ │ │ ├── terminal_check_appengine.go │ │ │ ├── terminal_check_js.go │ │ │ ├── terminal_check_notappengine.go │ │ │ ├── terminal_check_windows.go │ │ │ ├── terminal_notwindows.go │ │ │ ├── terminal_windows.go │ │ │ ├── text_formatter.go │ │ │ └── writer.go │ └── sony │ │ └── sonyflake │ │ ├── LICENSE │ │ ├── README.md │ │ └── sonyflake.go │ ├── golang.org │ └── x │ │ ├── crypto │ │ ├── LICENSE │ │ ├── PATENTS │ │ ├── ed25519 │ │ │ ├── ed25519.go │ │ │ └── internal │ │ │ │ └── edwards25519 │ │ │ │ ├── const.go │ │ │ │ └── edwards25519.go │ │ └── ssh │ │ │ └── terminal │ │ │ ├── terminal.go │ │ │ ├── util.go │ │ │ ├── util_aix.go │ │ │ ├── util_bsd.go │ │ │ ├── util_linux.go │ │ │ ├── util_plan9.go │ │ │ ├── util_solaris.go │ │ │ └── util_windows.go │ │ ├── net │ │ ├── LICENSE │ │ ├── PATENTS │ │ ├── bpf │ │ │ ├── asm.go │ │ │ ├── constants.go │ │ │ ├── doc.go │ │ │ ├── instructions.go │ │ │ ├── setter.go │ │ │ ├── vm.go │ │ │ └── vm_instructions.go │ │ ├── context │ │ │ ├── context.go │ │ │ ├── go17.go │ │ │ ├── go19.go │ │ │ ├── pre_go17.go │ │ │ └── pre_go19.go │ │ ├── internal │ │ │ ├── iana │ │ │ │ ├── const.go │ │ │ │ └── gen.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 │ │ │ │ ├── empty.s │ │ │ │ ├── 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 │ │ │ │ ├── sys.go │ │ │ │ ├── sys_bsd.go │ │ │ │ ├── sys_bsdvar.go │ │ │ │ ├── sys_darwin.go │ │ │ │ ├── sys_dragonfly.go │ │ │ │ ├── sys_go1_11_darwin.go │ │ │ │ ├── sys_go1_12_darwin.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_darwin_arm64.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 │ │ ├── ipv4 │ │ │ ├── batch.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 │ │ │ ├── gen.go │ │ │ ├── genericopt.go │ │ │ ├── header.go │ │ │ ├── helper.go │ │ │ ├── iana.go │ │ │ ├── icmp.go │ │ │ ├── icmp_linux.go │ │ │ ├── icmp_stub.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 │ │ │ ├── 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 │ │ │ ├── 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 │ │ │ ├── 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 │ │ │ ├── gen.go │ │ │ ├── genericopt.go │ │ │ ├── header.go │ │ │ ├── helper.go │ │ │ ├── iana.go │ │ │ ├── icmp.go │ │ │ ├── icmp_bsd.go │ │ │ ├── icmp_linux.go │ │ │ ├── icmp_solaris.go │ │ │ ├── icmp_stub.go │ │ │ ├── icmp_windows.go │ │ │ ├── payload.go │ │ │ ├── payload_cmsg.go │ │ │ ├── payload_cmsg_go1_8.go │ │ │ ├── payload_cmsg_go1_9.go │ │ │ ├── payload_nocmsg.go │ │ │ ├── sockopt.go │ │ │ ├── sockopt_posix.go │ │ │ ├── sockopt_stub.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 │ │ │ ├── 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 │ │ └── sys │ │ ├── LICENSE │ │ ├── PATENTS │ │ ├── unix │ │ ├── README.md │ │ ├── affinity_linux.go │ │ ├── aliases.go │ │ ├── asm_aix_ppc64.s │ │ ├── asm_darwin_386.s │ │ ├── asm_darwin_amd64.s │ │ ├── asm_darwin_arm.s │ │ ├── asm_darwin_arm64.s │ │ ├── asm_dragonfly_amd64.s │ │ ├── asm_freebsd_386.s │ │ ├── asm_freebsd_amd64.s │ │ ├── asm_freebsd_arm.s │ │ ├── asm_linux_386.s │ │ ├── asm_linux_amd64.s │ │ ├── asm_linux_arm.s │ │ ├── asm_linux_arm64.s │ │ ├── asm_linux_mips64x.s │ │ ├── asm_linux_mipsx.s │ │ ├── asm_linux_ppc64x.s │ │ ├── asm_linux_s390x.s │ │ ├── asm_netbsd_386.s │ │ ├── asm_netbsd_amd64.s │ │ ├── asm_netbsd_arm.s │ │ ├── asm_openbsd_386.s │ │ ├── asm_openbsd_amd64.s │ │ ├── asm_openbsd_arm.s │ │ ├── asm_solaris_amd64.s │ │ ├── bluetooth_linux.go │ │ ├── cap_freebsd.go │ │ ├── constants.go │ │ ├── dev_aix_ppc.go │ │ ├── dev_aix_ppc64.go │ │ ├── dev_darwin.go │ │ ├── dev_dragonfly.go │ │ ├── dev_freebsd.go │ │ ├── dev_linux.go │ │ ├── dev_netbsd.go │ │ ├── dev_openbsd.go │ │ ├── dirent.go │ │ ├── endian_big.go │ │ ├── endian_little.go │ │ ├── env_unix.go │ │ ├── errors_freebsd_386.go │ │ ├── errors_freebsd_amd64.go │ │ ├── errors_freebsd_arm.go │ │ ├── fcntl.go │ │ ├── fcntl_linux_32bit.go │ │ ├── gccgo.go │ │ ├── gccgo_c.c │ │ ├── gccgo_linux_amd64.go │ │ ├── ioctl.go │ │ ├── mkall.sh │ │ ├── mkerrors.sh │ │ ├── mkpost.go │ │ ├── mksyscall.pl │ │ ├── mksyscall_aix_ppc.pl │ │ ├── mksyscall_aix_ppc64.pl │ │ ├── mksyscall_solaris.pl │ │ ├── mksysctl_openbsd.pl │ │ ├── mksysnum_darwin.pl │ │ ├── mksysnum_dragonfly.pl │ │ ├── mksysnum_freebsd.pl │ │ ├── mksysnum_netbsd.pl │ │ ├── mksysnum_openbsd.pl │ │ ├── openbsd_pledge.go │ │ ├── openbsd_unveil.go │ │ ├── pagesize_unix.go │ │ ├── race.go │ │ ├── race0.go │ │ ├── sockcmsg_linux.go │ │ ├── sockcmsg_unix.go │ │ ├── str.go │ │ ├── syscall.go │ │ ├── syscall_aix.go │ │ ├── syscall_aix_ppc.go │ │ ├── syscall_aix_ppc64.go │ │ ├── syscall_bsd.go │ │ ├── syscall_darwin.go │ │ ├── syscall_darwin_386.go │ │ ├── syscall_darwin_amd64.go │ │ ├── syscall_darwin_arm.go │ │ ├── syscall_darwin_arm64.go │ │ ├── syscall_dragonfly.go │ │ ├── syscall_dragonfly_amd64.go │ │ ├── syscall_freebsd.go │ │ ├── syscall_freebsd_386.go │ │ ├── syscall_freebsd_amd64.go │ │ ├── syscall_freebsd_arm.go │ │ ├── syscall_linux.go │ │ ├── syscall_linux_386.go │ │ ├── syscall_linux_amd64.go │ │ ├── syscall_linux_amd64_gc.go │ │ ├── syscall_linux_arm.go │ │ ├── syscall_linux_arm64.go │ │ ├── syscall_linux_gc.go │ │ ├── syscall_linux_gc_386.go │ │ ├── syscall_linux_gccgo_386.go │ │ ├── syscall_linux_gccgo_arm.go │ │ ├── syscall_linux_mips64x.go │ │ ├── syscall_linux_mipsx.go │ │ ├── syscall_linux_ppc64x.go │ │ ├── syscall_linux_riscv64.go │ │ ├── syscall_linux_s390x.go │ │ ├── syscall_linux_sparc64.go │ │ ├── syscall_netbsd.go │ │ ├── syscall_netbsd_386.go │ │ ├── syscall_netbsd_amd64.go │ │ ├── syscall_netbsd_arm.go │ │ ├── syscall_openbsd.go │ │ ├── syscall_openbsd_386.go │ │ ├── syscall_openbsd_amd64.go │ │ ├── syscall_openbsd_arm.go │ │ ├── syscall_solaris.go │ │ ├── syscall_solaris_amd64.go │ │ ├── syscall_unix.go │ │ ├── syscall_unix_gc.go │ │ ├── timestruct.go │ │ ├── types_aix.go │ │ ├── types_darwin.go │ │ ├── types_dragonfly.go │ │ ├── types_freebsd.go │ │ ├── types_netbsd.go │ │ ├── types_openbsd.go │ │ ├── types_solaris.go │ │ ├── xattr_bsd.go │ │ ├── zerrors_aix_ppc.go │ │ ├── zerrors_aix_ppc64.go │ │ ├── zerrors_darwin_386.go │ │ ├── zerrors_darwin_amd64.go │ │ ├── zerrors_darwin_arm.go │ │ ├── zerrors_darwin_arm64.go │ │ ├── zerrors_dragonfly_amd64.go │ │ ├── zerrors_freebsd_386.go │ │ ├── zerrors_freebsd_amd64.go │ │ ├── zerrors_freebsd_arm.go │ │ ├── zerrors_linux_386.go │ │ ├── zerrors_linux_amd64.go │ │ ├── zerrors_linux_arm.go │ │ ├── zerrors_linux_arm64.go │ │ ├── zerrors_linux_mips.go │ │ ├── zerrors_linux_mips64.go │ │ ├── zerrors_linux_mips64le.go │ │ ├── zerrors_linux_mipsle.go │ │ ├── zerrors_linux_ppc64.go │ │ ├── zerrors_linux_ppc64le.go │ │ ├── zerrors_linux_riscv64.go │ │ ├── zerrors_linux_s390x.go │ │ ├── zerrors_linux_sparc64.go │ │ ├── zerrors_netbsd_386.go │ │ ├── zerrors_netbsd_amd64.go │ │ ├── zerrors_netbsd_arm.go │ │ ├── zerrors_openbsd_386.go │ │ ├── zerrors_openbsd_amd64.go │ │ ├── zerrors_openbsd_arm.go │ │ ├── zerrors_solaris_amd64.go │ │ ├── zptrace386_linux.go │ │ ├── zptracearm_linux.go │ │ ├── zptracemips_linux.go │ │ ├── zptracemipsle_linux.go │ │ ├── zsyscall_aix_ppc.go │ │ ├── zsyscall_aix_ppc64.go │ │ ├── zsyscall_aix_ppc64_gc.go │ │ ├── zsyscall_aix_ppc64_gccgo.go │ │ ├── zsyscall_darwin_386.go │ │ ├── zsyscall_darwin_amd64.go │ │ ├── zsyscall_darwin_arm.go │ │ ├── zsyscall_darwin_arm64.go │ │ ├── zsyscall_dragonfly_amd64.go │ │ ├── zsyscall_freebsd_386.go │ │ ├── zsyscall_freebsd_amd64.go │ │ ├── zsyscall_freebsd_arm.go │ │ ├── zsyscall_linux_386.go │ │ ├── zsyscall_linux_amd64.go │ │ ├── zsyscall_linux_arm.go │ │ ├── zsyscall_linux_arm64.go │ │ ├── zsyscall_linux_mips.go │ │ ├── zsyscall_linux_mips64.go │ │ ├── zsyscall_linux_mips64le.go │ │ ├── zsyscall_linux_mipsle.go │ │ ├── zsyscall_linux_ppc64.go │ │ ├── zsyscall_linux_ppc64le.go │ │ ├── zsyscall_linux_riscv64.go │ │ ├── zsyscall_linux_s390x.go │ │ ├── zsyscall_linux_sparc64.go │ │ ├── zsyscall_netbsd_386.go │ │ ├── zsyscall_netbsd_amd64.go │ │ ├── zsyscall_netbsd_arm.go │ │ ├── zsyscall_openbsd_386.go │ │ ├── zsyscall_openbsd_amd64.go │ │ ├── zsyscall_openbsd_arm.go │ │ ├── zsyscall_solaris_amd64.go │ │ ├── zsysctl_openbsd_386.go │ │ ├── zsysctl_openbsd_amd64.go │ │ ├── zsysctl_openbsd_arm.go │ │ ├── zsysnum_darwin_386.go │ │ ├── zsysnum_darwin_amd64.go │ │ ├── zsysnum_darwin_arm.go │ │ ├── zsysnum_darwin_arm64.go │ │ ├── zsysnum_dragonfly_amd64.go │ │ ├── zsysnum_freebsd_386.go │ │ ├── zsysnum_freebsd_amd64.go │ │ ├── zsysnum_freebsd_arm.go │ │ ├── zsysnum_linux_386.go │ │ ├── zsysnum_linux_amd64.go │ │ ├── zsysnum_linux_arm.go │ │ ├── zsysnum_linux_arm64.go │ │ ├── zsysnum_linux_mips.go │ │ ├── zsysnum_linux_mips64.go │ │ ├── zsysnum_linux_mips64le.go │ │ ├── zsysnum_linux_mipsle.go │ │ ├── zsysnum_linux_ppc64.go │ │ ├── zsysnum_linux_ppc64le.go │ │ ├── zsysnum_linux_riscv64.go │ │ ├── zsysnum_linux_s390x.go │ │ ├── zsysnum_linux_sparc64.go │ │ ├── zsysnum_netbsd_386.go │ │ ├── zsysnum_netbsd_amd64.go │ │ ├── zsysnum_netbsd_arm.go │ │ ├── zsysnum_openbsd_386.go │ │ ├── zsysnum_openbsd_amd64.go │ │ ├── zsysnum_openbsd_arm.go │ │ ├── ztypes_aix_ppc.go │ │ ├── ztypes_aix_ppc64.go │ │ ├── ztypes_darwin_386.go │ │ ├── ztypes_darwin_amd64.go │ │ ├── ztypes_darwin_arm.go │ │ ├── ztypes_darwin_arm64.go │ │ ├── ztypes_dragonfly_amd64.go │ │ ├── ztypes_freebsd_386.go │ │ ├── ztypes_freebsd_amd64.go │ │ ├── ztypes_freebsd_arm.go │ │ ├── ztypes_linux_386.go │ │ ├── ztypes_linux_amd64.go │ │ ├── ztypes_linux_arm.go │ │ ├── ztypes_linux_arm64.go │ │ ├── ztypes_linux_mips.go │ │ ├── ztypes_linux_mips64.go │ │ ├── ztypes_linux_mips64le.go │ │ ├── ztypes_linux_mipsle.go │ │ ├── ztypes_linux_ppc64.go │ │ ├── ztypes_linux_ppc64le.go │ │ ├── ztypes_linux_riscv64.go │ │ ├── ztypes_linux_s390x.go │ │ ├── ztypes_linux_sparc64.go │ │ ├── ztypes_netbsd_386.go │ │ ├── ztypes_netbsd_amd64.go │ │ ├── ztypes_netbsd_arm.go │ │ ├── ztypes_openbsd_386.go │ │ ├── ztypes_openbsd_amd64.go │ │ ├── ztypes_openbsd_arm.go │ │ └── ztypes_solaris_amd64.go │ │ └── windows │ │ ├── aliases.go │ │ ├── asm_windows_386.s │ │ ├── asm_windows_amd64.s │ │ ├── asm_windows_arm.s │ │ ├── dll_windows.go │ │ ├── env_windows.go │ │ ├── eventlog.go │ │ ├── exec_windows.go │ │ ├── memory_windows.go │ │ ├── mksyscall.go │ │ ├── race.go │ │ ├── race0.go │ │ ├── security_windows.go │ │ ├── service.go │ │ ├── str.go │ │ ├── syscall.go │ │ ├── syscall_windows.go │ │ ├── types_windows.go │ │ ├── types_windows_386.go │ │ ├── types_windows_amd64.go │ │ ├── types_windows_arm.go │ │ └── zsyscall_windows.go │ ├── gopkg.in │ └── sourcemap.v1 │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README.md │ │ ├── base64vlq │ │ └── base64_vlq.go │ │ ├── consumer.go │ │ └── sourcemap.go │ └── vendor.json └── service-user ├── Dockerfile ├── Makefile ├── README.md ├── client └── client.go ├── conf ├── bitesla-config.ini ├── bitesla-env-dev.ini ├── bitesla-env-prod.ini ├── bitesla-env-test.ini └── conf.go ├── db ├── db.go └── user_mapper.go ├── handler ├── user_handler.go └── user_resposity.go ├── main.go ├── orm ├── table2struct │ ├── main.go │ └── main_test.go └── user.go ├── proto ├── user.micro.go ├── user.pb.go └── user.proto └── vendor ├── github.com ├── armon │ └── go-metrics │ │ ├── LICENSE │ │ ├── README.md │ │ ├── const_unix.go │ │ ├── const_windows.go │ │ ├── inmem.go │ │ ├── inmem_endpoint.go │ │ ├── inmem_signal.go │ │ ├── metrics.go │ │ ├── sink.go │ │ ├── start.go │ │ ├── statsd.go │ │ └── statsite.go ├── dgrijalva │ └── jwt-go │ │ ├── LICENSE │ │ ├── MIGRATION_GUIDE.md │ │ ├── README.md │ │ ├── VERSION_HISTORY.md │ │ ├── claims.go │ │ ├── doc.go │ │ ├── ecdsa.go │ │ ├── ecdsa_utils.go │ │ ├── errors.go │ │ ├── hmac.go │ │ ├── map_claims.go │ │ ├── none.go │ │ ├── parser.go │ │ ├── rsa.go │ │ ├── rsa_pss.go │ │ ├── rsa_utils.go │ │ ├── signing_method.go │ │ └── token.go ├── garyburd │ └── redigo │ │ ├── LICENSE │ │ ├── internal │ │ └── commandinfo.go │ │ └── redis │ │ ├── conn.go │ │ ├── doc.go │ │ ├── go16.go │ │ ├── go17.go │ │ ├── go18.go │ │ ├── log.go │ │ ├── pool.go │ │ ├── pool17.go │ │ ├── pubsub.go │ │ ├── redis.go │ │ ├── reply.go │ │ ├── scan.go │ │ └── script.go ├── go-log │ └── log │ │ ├── LICENSE │ │ ├── README.md │ │ ├── log.go │ │ └── log │ │ └── log.go ├── go-sql-driver │ └── mysql │ │ ├── AUTHORS │ │ ├── CHANGELOG.md │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── appengine.go │ │ ├── auth.go │ │ ├── buffer.go │ │ ├── collations.go │ │ ├── connection.go │ │ ├── const.go │ │ ├── driver.go │ │ ├── dsn.go │ │ ├── errors.go │ │ ├── fields.go │ │ ├── infile.go │ │ ├── packets.go │ │ ├── result.go │ │ ├── rows.go │ │ ├── statement.go │ │ ├── transaction.go │ │ └── utils.go ├── golang │ └── protobuf │ │ ├── LICENSE │ │ └── proto │ │ ├── clone.go │ │ ├── decode.go │ │ ├── deprecated.go │ │ ├── discard.go │ │ ├── encode.go │ │ ├── equal.go │ │ ├── extensions.go │ │ ├── lib.go │ │ ├── message_set.go │ │ ├── pointer_reflect.go │ │ ├── pointer_unsafe.go │ │ ├── properties.go │ │ ├── table_marshal.go │ │ ├── table_merge.go │ │ ├── table_unmarshal.go │ │ ├── text.go │ │ └── text_parser.go ├── google │ └── uuid │ │ ├── CONTRIBUTING.md │ │ ├── CONTRIBUTORS │ │ ├── LICENSE │ │ ├── README.md │ │ ├── dce.go │ │ ├── doc.go │ │ ├── go.mod │ │ ├── hash.go │ │ ├── marshal.go │ │ ├── node.go │ │ ├── node_js.go │ │ ├── node_net.go │ │ ├── sql.go │ │ ├── time.go │ │ ├── util.go │ │ ├── uuid.go │ │ ├── version1.go │ │ └── version4.go ├── hashicorp │ ├── consul │ │ ├── LICENSE │ │ ├── NOTICE.md │ │ ├── api │ │ │ ├── README.md │ │ │ ├── acl.go │ │ │ ├── agent.go │ │ │ ├── api.go │ │ │ ├── catalog.go │ │ │ ├── connect.go │ │ │ ├── connect_ca.go │ │ │ ├── connect_intention.go │ │ │ ├── coordinate.go │ │ │ ├── event.go │ │ │ ├── health.go │ │ │ ├── kv.go │ │ │ ├── lock.go │ │ │ ├── operator.go │ │ │ ├── operator_area.go │ │ │ ├── operator_autopilot.go │ │ │ ├── operator_keyring.go │ │ │ ├── operator_raft.go │ │ │ ├── operator_segment.go │ │ │ ├── prepared_query.go │ │ │ ├── raw.go │ │ │ ├── semaphore.go │ │ │ ├── session.go │ │ │ ├── snapshot.go │ │ │ └── status.go │ │ └── watch │ │ │ ├── funcs.go │ │ │ ├── plan.go │ │ │ └── watch.go │ ├── go-cleanhttp │ │ ├── LICENSE │ │ ├── README.md │ │ ├── cleanhttp.go │ │ ├── doc.go │ │ └── handlers.go │ ├── go-immutable-radix │ │ ├── LICENSE │ │ ├── README.md │ │ ├── edges.go │ │ ├── iradix.go │ │ ├── iter.go │ │ ├── node.go │ │ └── raw_iter.go │ ├── go-rootcerts │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README.md │ │ ├── doc.go │ │ ├── rootcerts.go │ │ ├── rootcerts_base.go │ │ └── rootcerts_darwin.go │ ├── golang-lru │ │ ├── LICENSE │ │ └── simplelru │ │ │ └── lru.go │ └── serf │ │ ├── LICENSE │ │ └── coordinate │ │ ├── client.go │ │ ├── config.go │ │ ├── coordinate.go │ │ └── phantom.go ├── jason-wj │ └── bitesla │ │ └── common │ │ ├── constants │ │ ├── omit.go │ │ └── redis_key.go │ │ ├── errs │ │ ├── code.go │ │ ├── errors.go │ │ └── msg.go │ │ ├── iniconfig │ │ └── conf.go │ │ ├── logger │ │ ├── daterot │ │ │ ├── daterot.go │ │ │ └── vars.go │ │ └── logger.go │ │ └── util │ │ ├── cache │ │ └── redis.go │ │ ├── idgenerate │ │ └── id.go │ │ ├── jwt │ │ └── jwt.go │ │ ├── mysql │ │ └── converter │ │ │ ├── table2struct.go │ │ │ └── version.go │ │ └── stringutl │ │ └── base_util.go ├── jinzhu │ ├── gorm │ │ ├── License │ │ ├── README.md │ │ ├── association.go │ │ ├── callback.go │ │ ├── callback_create.go │ │ ├── callback_delete.go │ │ ├── callback_query.go │ │ ├── callback_query_preload.go │ │ ├── callback_row_query.go │ │ ├── callback_save.go │ │ ├── callback_update.go │ │ ├── dialect.go │ │ ├── dialect_common.go │ │ ├── dialect_mysql.go │ │ ├── dialect_postgres.go │ │ ├── dialect_sqlite3.go │ │ ├── dialects │ │ │ └── mysql │ │ │ │ └── mysql.go │ │ ├── docker-compose.yml │ │ ├── errors.go │ │ ├── field.go │ │ ├── interface.go │ │ ├── join_table_handler.go │ │ ├── logger.go │ │ ├── main.go │ │ ├── model.go │ │ ├── model_struct.go │ │ ├── naming.go │ │ ├── scope.go │ │ ├── search.go │ │ ├── test_all.sh │ │ ├── utils.go │ │ └── wercker.yml │ └── inflection │ │ ├── LICENSE │ │ ├── README.md │ │ ├── inflections.go │ │ └── wercker.yml ├── konsorten │ └── go-windows-terminal-sequences │ │ ├── LICENSE │ │ ├── README.md │ │ ├── go.mod │ │ └── sequences.go ├── lestrrat-go │ ├── file-rotatelogs │ │ ├── LICENSE │ │ ├── README.md │ │ ├── event.go │ │ ├── interface.go │ │ ├── internal │ │ │ └── option │ │ │ │ └── option.go │ │ ├── options.go │ │ └── rotatelogs.go │ └── strftime │ │ ├── LICENSE │ │ ├── README.md │ │ ├── strftime.go │ │ └── writer.go ├── micro │ ├── cli │ │ ├── LICENSE │ │ ├── README.md │ │ ├── app.go │ │ ├── appveyor.yml │ │ ├── category.go │ │ ├── cli.go │ │ ├── command.go │ │ ├── context.go │ │ ├── flag.go │ │ └── help.go │ ├── go-log │ │ ├── LICENSE │ │ ├── README.md │ │ └── log.go │ ├── go-micro │ │ ├── LICENSE │ │ ├── README.md │ │ ├── broker │ │ │ ├── broker.go │ │ │ ├── codec │ │ │ │ ├── codec.go │ │ │ │ └── json │ │ │ │ │ └── json.go │ │ │ ├── http │ │ │ │ └── http.go │ │ │ ├── http_broker.go │ │ │ └── options.go │ │ ├── client │ │ │ ├── backoff.go │ │ │ ├── buffer.go │ │ │ ├── client.go │ │ │ ├── context.go │ │ │ ├── options.go │ │ │ ├── retry.go │ │ │ ├── rpc_client.go │ │ │ ├── rpc_codec.go │ │ │ ├── rpc_message.go │ │ │ ├── rpc_pool.go │ │ │ ├── rpc_request.go │ │ │ ├── rpc_stream.go │ │ │ └── wrapper.go │ │ ├── cmd │ │ │ ├── cmd.go │ │ │ └── options.go │ │ ├── codec │ │ │ ├── codec.go │ │ │ ├── jsonrpc │ │ │ │ ├── client.go │ │ │ │ ├── jsonrpc.go │ │ │ │ └── server.go │ │ │ └── protorpc │ │ │ │ ├── envelope.pb.go │ │ │ │ ├── envelope.proto │ │ │ │ ├── netstring.go │ │ │ │ └── protorpc.go │ │ ├── errors │ │ │ └── errors.go │ │ ├── function.go │ │ ├── go-micro.go │ │ ├── go-micro.png │ │ ├── metadata │ │ │ └── metadata.go │ │ ├── options.go │ │ ├── publisher.go │ │ ├── registry │ │ │ ├── consul │ │ │ │ ├── consul.go │ │ │ │ └── options.go │ │ │ ├── consul_registry.go │ │ │ ├── consul_watcher.go │ │ │ ├── encoding.go │ │ │ ├── mdns │ │ │ │ ├── encoding.go │ │ │ │ ├── mdns.go │ │ │ │ └── watcher.go │ │ │ ├── options.go │ │ │ ├── registry.go │ │ │ ├── service.go │ │ │ └── watcher.go │ │ ├── selector │ │ │ ├── cache │ │ │ │ ├── cache.go │ │ │ │ └── options.go │ │ │ ├── default.go │ │ │ ├── filter.go │ │ │ ├── options.go │ │ │ ├── selector.go │ │ │ └── strategy.go │ │ ├── server │ │ │ ├── buffer.go │ │ │ ├── context.go │ │ │ ├── debug.go │ │ │ ├── debug │ │ │ │ ├── debug.go │ │ │ │ └── proto │ │ │ │ │ ├── debug.pb.go │ │ │ │ │ └── debug.proto │ │ │ ├── extractor.go │ │ │ ├── handler.go │ │ │ ├── options.go │ │ │ ├── rpc_codec.go │ │ │ ├── rpc_handler.go │ │ │ ├── rpc_request.go │ │ │ ├── rpc_server.go │ │ │ ├── rpc_service.go │ │ │ ├── rpc_stream.go │ │ │ ├── server.go │ │ │ ├── subscriber.go │ │ │ └── wrapper.go │ │ ├── service.go │ │ ├── transport │ │ │ ├── codec │ │ │ │ └── codec.go │ │ │ ├── http │ │ │ │ └── http.go │ │ │ ├── http_transport.go │ │ │ ├── options.go │ │ │ └── transport.go │ │ └── wrapper.go │ ├── go-rcache │ │ ├── LICENSE │ │ ├── README.md │ │ ├── options.go │ │ └── rcache.go │ ├── mdns │ │ ├── LICENSE │ │ ├── README.md │ │ ├── client.go │ │ ├── dns_sd.go │ │ ├── server.go │ │ └── zone.go │ └── util │ │ ├── LICENSE │ │ └── go │ │ └── lib │ │ ├── addr │ │ └── addr.go │ │ ├── net │ │ └── net.go │ │ └── tls │ │ └── tls.go ├── miekg │ └── dns │ │ ├── AUTHORS │ │ ├── CONTRIBUTORS │ │ ├── COPYRIGHT │ │ ├── Gopkg.lock │ │ ├── Gopkg.toml │ │ ├── LICENSE │ │ ├── Makefile.fuzz │ │ ├── Makefile.release │ │ ├── README.md │ │ ├── client.go │ │ ├── clientconfig.go │ │ ├── compress_generate.go │ │ ├── dane.go │ │ ├── defaults.go │ │ ├── dns.go │ │ ├── dnssec.go │ │ ├── dnssec_keygen.go │ │ ├── dnssec_keyscan.go │ │ ├── dnssec_privkey.go │ │ ├── doc.go │ │ ├── duplicate.go │ │ ├── duplicate_generate.go │ │ ├── edns.go │ │ ├── format.go │ │ ├── fuzz.go │ │ ├── generate.go │ │ ├── labels.go │ │ ├── listen_go111.go │ │ ├── listen_go_not111.go │ │ ├── msg.go │ │ ├── msg_generate.go │ │ ├── msg_helpers.go │ │ ├── nsecx.go │ │ ├── privaterr.go │ │ ├── rawmsg.go │ │ ├── reverse.go │ │ ├── sanitize.go │ │ ├── scan.go │ │ ├── scan_rr.go │ │ ├── scanner.go │ │ ├── serve_mux.go │ │ ├── server.go │ │ ├── sig0.go │ │ ├── singleinflight.go │ │ ├── smimea.go │ │ ├── tlsa.go │ │ ├── tsig.go │ │ ├── types.go │ │ ├── types_generate.go │ │ ├── udp.go │ │ ├── udp_windows.go │ │ ├── update.go │ │ ├── version.go │ │ ├── xfr.go │ │ ├── zcompress.go │ │ ├── zduplicate.go │ │ ├── zmsg.go │ │ └── ztypes.go ├── mitchellh │ ├── go-homedir │ │ ├── LICENSE │ │ ├── README.md │ │ └── homedir.go │ ├── hashstructure │ │ ├── LICENSE │ │ ├── README.md │ │ ├── go.mod │ │ ├── hashstructure.go │ │ └── include.go │ └── mapstructure │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── decode_hooks.go │ │ ├── error.go │ │ ├── go.mod │ │ └── mapstructure.go ├── pborman │ └── uuid │ │ ├── CONTRIBUTING.md │ │ ├── CONTRIBUTORS │ │ ├── LICENSE │ │ ├── README.md │ │ ├── dce.go │ │ ├── doc.go │ │ ├── go.mod │ │ ├── go.sum │ │ ├── hash.go │ │ ├── marshal.go │ │ ├── node.go │ │ ├── sql.go │ │ ├── time.go │ │ ├── util.go │ │ ├── uuid.go │ │ ├── version1.go │ │ └── version4.go ├── pkg │ └── errors │ │ ├── LICENSE │ │ ├── README.md │ │ ├── appveyor.yml │ │ ├── errors.go │ │ └── stack.go ├── sirupsen │ └── logrus │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── alt_exit.go │ │ ├── appveyor.yml │ │ ├── doc.go │ │ ├── entry.go │ │ ├── exported.go │ │ ├── formatter.go │ │ ├── go.mod │ │ ├── go.sum │ │ ├── hooks.go │ │ ├── json_formatter.go │ │ ├── logger.go │ │ ├── logrus.go │ │ ├── terminal_check_appengine.go │ │ ├── terminal_check_js.go │ │ ├── terminal_check_notappengine.go │ │ ├── terminal_check_windows.go │ │ ├── terminal_notwindows.go │ │ ├── terminal_windows.go │ │ ├── text_formatter.go │ │ └── writer.go └── sony │ └── sonyflake │ ├── LICENSE │ ├── README.md │ └── sonyflake.go ├── golang.org └── x │ ├── crypto │ ├── LICENSE │ ├── PATENTS │ ├── ed25519 │ │ ├── ed25519.go │ │ └── internal │ │ │ └── edwards25519 │ │ │ ├── const.go │ │ │ └── edwards25519.go │ └── ssh │ │ └── terminal │ │ ├── terminal.go │ │ ├── util.go │ │ ├── util_aix.go │ │ ├── util_bsd.go │ │ ├── util_linux.go │ │ ├── util_plan9.go │ │ ├── util_solaris.go │ │ └── util_windows.go │ ├── net │ ├── LICENSE │ ├── PATENTS │ ├── bpf │ │ ├── asm.go │ │ ├── constants.go │ │ ├── doc.go │ │ ├── instructions.go │ │ ├── setter.go │ │ ├── vm.go │ │ └── vm_instructions.go │ ├── context │ │ ├── context.go │ │ ├── go17.go │ │ ├── go19.go │ │ ├── pre_go17.go │ │ └── pre_go19.go │ ├── internal │ │ ├── iana │ │ │ ├── const.go │ │ │ └── gen.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 │ │ │ ├── empty.s │ │ │ ├── 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 │ │ │ ├── sys.go │ │ │ ├── sys_bsd.go │ │ │ ├── sys_bsdvar.go │ │ │ ├── sys_darwin.go │ │ │ ├── sys_dragonfly.go │ │ │ ├── sys_go1_11_darwin.go │ │ │ ├── sys_go1_12_darwin.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_darwin_arm64.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 │ ├── ipv4 │ │ ├── batch.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 │ │ ├── gen.go │ │ ├── genericopt.go │ │ ├── header.go │ │ ├── helper.go │ │ ├── iana.go │ │ ├── icmp.go │ │ ├── icmp_linux.go │ │ ├── icmp_stub.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 │ │ ├── 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 │ │ ├── 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 │ │ ├── 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 │ │ ├── gen.go │ │ ├── genericopt.go │ │ ├── header.go │ │ ├── helper.go │ │ ├── iana.go │ │ ├── icmp.go │ │ ├── icmp_bsd.go │ │ ├── icmp_linux.go │ │ ├── icmp_solaris.go │ │ ├── icmp_stub.go │ │ ├── icmp_windows.go │ │ ├── payload.go │ │ ├── payload_cmsg.go │ │ ├── payload_cmsg_go1_8.go │ │ ├── payload_cmsg_go1_9.go │ │ ├── payload_nocmsg.go │ │ ├── sockopt.go │ │ ├── sockopt_posix.go │ │ ├── sockopt_stub.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 │ │ ├── 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 │ └── sys │ ├── LICENSE │ ├── PATENTS │ ├── unix │ ├── README.md │ ├── affinity_linux.go │ ├── aliases.go │ ├── asm_aix_ppc64.s │ ├── asm_darwin_386.s │ ├── asm_darwin_amd64.s │ ├── asm_darwin_arm.s │ ├── asm_darwin_arm64.s │ ├── asm_dragonfly_amd64.s │ ├── asm_freebsd_386.s │ ├── asm_freebsd_amd64.s │ ├── asm_freebsd_arm.s │ ├── asm_linux_386.s │ ├── asm_linux_amd64.s │ ├── asm_linux_arm.s │ ├── asm_linux_arm64.s │ ├── asm_linux_mips64x.s │ ├── asm_linux_mipsx.s │ ├── asm_linux_ppc64x.s │ ├── asm_linux_s390x.s │ ├── asm_netbsd_386.s │ ├── asm_netbsd_amd64.s │ ├── asm_netbsd_arm.s │ ├── asm_openbsd_386.s │ ├── asm_openbsd_amd64.s │ ├── asm_openbsd_arm.s │ ├── asm_solaris_amd64.s │ ├── bluetooth_linux.go │ ├── cap_freebsd.go │ ├── constants.go │ ├── dev_aix_ppc.go │ ├── dev_aix_ppc64.go │ ├── dev_darwin.go │ ├── dev_dragonfly.go │ ├── dev_freebsd.go │ ├── dev_linux.go │ ├── dev_netbsd.go │ ├── dev_openbsd.go │ ├── dirent.go │ ├── endian_big.go │ ├── endian_little.go │ ├── env_unix.go │ ├── errors_freebsd_386.go │ ├── errors_freebsd_amd64.go │ ├── errors_freebsd_arm.go │ ├── fcntl.go │ ├── fcntl_linux_32bit.go │ ├── gccgo.go │ ├── gccgo_c.c │ ├── gccgo_linux_amd64.go │ ├── ioctl.go │ ├── mkall.sh │ ├── mkerrors.sh │ ├── mkpost.go │ ├── mksyscall.pl │ ├── mksyscall_aix_ppc.pl │ ├── mksyscall_aix_ppc64.pl │ ├── mksyscall_solaris.pl │ ├── mksysctl_openbsd.pl │ ├── mksysnum_darwin.pl │ ├── mksysnum_dragonfly.pl │ ├── mksysnum_freebsd.pl │ ├── mksysnum_netbsd.pl │ ├── mksysnum_openbsd.pl │ ├── openbsd_pledge.go │ ├── openbsd_unveil.go │ ├── pagesize_unix.go │ ├── race.go │ ├── race0.go │ ├── sockcmsg_linux.go │ ├── sockcmsg_unix.go │ ├── str.go │ ├── syscall.go │ ├── syscall_aix.go │ ├── syscall_aix_ppc.go │ ├── syscall_aix_ppc64.go │ ├── syscall_bsd.go │ ├── syscall_darwin.go │ ├── syscall_darwin_386.go │ ├── syscall_darwin_amd64.go │ ├── syscall_darwin_arm.go │ ├── syscall_darwin_arm64.go │ ├── syscall_dragonfly.go │ ├── syscall_dragonfly_amd64.go │ ├── syscall_freebsd.go │ ├── syscall_freebsd_386.go │ ├── syscall_freebsd_amd64.go │ ├── syscall_freebsd_arm.go │ ├── syscall_linux.go │ ├── syscall_linux_386.go │ ├── syscall_linux_amd64.go │ ├── syscall_linux_amd64_gc.go │ ├── syscall_linux_arm.go │ ├── syscall_linux_arm64.go │ ├── syscall_linux_gc.go │ ├── syscall_linux_gc_386.go │ ├── syscall_linux_gccgo_386.go │ ├── syscall_linux_gccgo_arm.go │ ├── syscall_linux_mips64x.go │ ├── syscall_linux_mipsx.go │ ├── syscall_linux_ppc64x.go │ ├── syscall_linux_riscv64.go │ ├── syscall_linux_s390x.go │ ├── syscall_linux_sparc64.go │ ├── syscall_netbsd.go │ ├── syscall_netbsd_386.go │ ├── syscall_netbsd_amd64.go │ ├── syscall_netbsd_arm.go │ ├── syscall_openbsd.go │ ├── syscall_openbsd_386.go │ ├── syscall_openbsd_amd64.go │ ├── syscall_openbsd_arm.go │ ├── syscall_solaris.go │ ├── syscall_solaris_amd64.go │ ├── syscall_unix.go │ ├── syscall_unix_gc.go │ ├── timestruct.go │ ├── types_aix.go │ ├── types_darwin.go │ ├── types_dragonfly.go │ ├── types_freebsd.go │ ├── types_netbsd.go │ ├── types_openbsd.go │ ├── types_solaris.go │ ├── xattr_bsd.go │ ├── zerrors_aix_ppc.go │ ├── zerrors_aix_ppc64.go │ ├── zerrors_darwin_386.go │ ├── zerrors_darwin_amd64.go │ ├── zerrors_darwin_arm.go │ ├── zerrors_darwin_arm64.go │ ├── zerrors_dragonfly_amd64.go │ ├── zerrors_freebsd_386.go │ ├── zerrors_freebsd_amd64.go │ ├── zerrors_freebsd_arm.go │ ├── zerrors_linux_386.go │ ├── zerrors_linux_amd64.go │ ├── zerrors_linux_arm.go │ ├── zerrors_linux_arm64.go │ ├── zerrors_linux_mips.go │ ├── zerrors_linux_mips64.go │ ├── zerrors_linux_mips64le.go │ ├── zerrors_linux_mipsle.go │ ├── zerrors_linux_ppc64.go │ ├── zerrors_linux_ppc64le.go │ ├── zerrors_linux_riscv64.go │ ├── zerrors_linux_s390x.go │ ├── zerrors_linux_sparc64.go │ ├── zerrors_netbsd_386.go │ ├── zerrors_netbsd_amd64.go │ ├── zerrors_netbsd_arm.go │ ├── zerrors_openbsd_386.go │ ├── zerrors_openbsd_amd64.go │ ├── zerrors_openbsd_arm.go │ ├── zerrors_solaris_amd64.go │ ├── zptrace386_linux.go │ ├── zptracearm_linux.go │ ├── zptracemips_linux.go │ ├── zptracemipsle_linux.go │ ├── zsyscall_aix_ppc.go │ ├── zsyscall_aix_ppc64.go │ ├── zsyscall_aix_ppc64_gc.go │ ├── zsyscall_aix_ppc64_gccgo.go │ ├── zsyscall_darwin_386.go │ ├── zsyscall_darwin_amd64.go │ ├── zsyscall_darwin_arm.go │ ├── zsyscall_darwin_arm64.go │ ├── zsyscall_dragonfly_amd64.go │ ├── zsyscall_freebsd_386.go │ ├── zsyscall_freebsd_amd64.go │ ├── zsyscall_freebsd_arm.go │ ├── zsyscall_linux_386.go │ ├── zsyscall_linux_amd64.go │ ├── zsyscall_linux_arm.go │ ├── zsyscall_linux_arm64.go │ ├── zsyscall_linux_mips.go │ ├── zsyscall_linux_mips64.go │ ├── zsyscall_linux_mips64le.go │ ├── zsyscall_linux_mipsle.go │ ├── zsyscall_linux_ppc64.go │ ├── zsyscall_linux_ppc64le.go │ ├── zsyscall_linux_riscv64.go │ ├── zsyscall_linux_s390x.go │ ├── zsyscall_linux_sparc64.go │ ├── zsyscall_netbsd_386.go │ ├── zsyscall_netbsd_amd64.go │ ├── zsyscall_netbsd_arm.go │ ├── zsyscall_openbsd_386.go │ ├── zsyscall_openbsd_amd64.go │ ├── zsyscall_openbsd_arm.go │ ├── zsyscall_solaris_amd64.go │ ├── zsysctl_openbsd_386.go │ ├── zsysctl_openbsd_amd64.go │ ├── zsysctl_openbsd_arm.go │ ├── zsysnum_darwin_386.go │ ├── zsysnum_darwin_amd64.go │ ├── zsysnum_darwin_arm.go │ ├── zsysnum_darwin_arm64.go │ ├── zsysnum_dragonfly_amd64.go │ ├── zsysnum_freebsd_386.go │ ├── zsysnum_freebsd_amd64.go │ ├── zsysnum_freebsd_arm.go │ ├── zsysnum_linux_386.go │ ├── zsysnum_linux_amd64.go │ ├── zsysnum_linux_arm.go │ ├── zsysnum_linux_arm64.go │ ├── zsysnum_linux_mips.go │ ├── zsysnum_linux_mips64.go │ ├── zsysnum_linux_mips64le.go │ ├── zsysnum_linux_mipsle.go │ ├── zsysnum_linux_ppc64.go │ ├── zsysnum_linux_ppc64le.go │ ├── zsysnum_linux_riscv64.go │ ├── zsysnum_linux_s390x.go │ ├── zsysnum_linux_sparc64.go │ ├── zsysnum_netbsd_386.go │ ├── zsysnum_netbsd_amd64.go │ ├── zsysnum_netbsd_arm.go │ ├── zsysnum_openbsd_386.go │ ├── zsysnum_openbsd_amd64.go │ ├── zsysnum_openbsd_arm.go │ ├── ztypes_aix_ppc.go │ ├── ztypes_aix_ppc64.go │ ├── ztypes_darwin_386.go │ ├── ztypes_darwin_amd64.go │ ├── ztypes_darwin_arm.go │ ├── ztypes_darwin_arm64.go │ ├── ztypes_dragonfly_amd64.go │ ├── ztypes_freebsd_386.go │ ├── ztypes_freebsd_amd64.go │ ├── ztypes_freebsd_arm.go │ ├── ztypes_linux_386.go │ ├── ztypes_linux_amd64.go │ ├── ztypes_linux_arm.go │ ├── ztypes_linux_arm64.go │ ├── ztypes_linux_mips.go │ ├── ztypes_linux_mips64.go │ ├── ztypes_linux_mips64le.go │ ├── ztypes_linux_mipsle.go │ ├── ztypes_linux_ppc64.go │ ├── ztypes_linux_ppc64le.go │ ├── ztypes_linux_riscv64.go │ ├── ztypes_linux_s390x.go │ ├── ztypes_linux_sparc64.go │ ├── ztypes_netbsd_386.go │ ├── ztypes_netbsd_amd64.go │ ├── ztypes_netbsd_arm.go │ ├── ztypes_openbsd_386.go │ ├── ztypes_openbsd_amd64.go │ ├── ztypes_openbsd_arm.go │ └── ztypes_solaris_amd64.go │ └── windows │ ├── aliases.go │ ├── asm_windows_386.s │ ├── asm_windows_amd64.s │ ├── asm_windows_arm.s │ ├── dll_windows.go │ ├── env_windows.go │ ├── eventlog.go │ ├── exec_windows.go │ ├── memory_windows.go │ ├── mksyscall.go │ ├── race.go │ ├── race0.go │ ├── security_windows.go │ ├── service.go │ ├── str.go │ ├── syscall.go │ ├── syscall_windows.go │ ├── types_windows.go │ ├── types_windows_386.go │ ├── types_windows_amd64.go │ ├── types_windows_arm.go │ └── zsyscall_windows.go └── vendor.json /.gitattributes: -------------------------------------------------------------------------------- 1 | * linguist-language=Go -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/.gitignore -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/README.md -------------------------------------------------------------------------------- /bitesla-config.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/bitesla-config.ini -------------------------------------------------------------------------------- /bitesla-server/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/bitesla-server/README.md -------------------------------------------------------------------------------- /bitesla-server/bitesla.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/bitesla-server/bitesla.sh -------------------------------------------------------------------------------- /bitesla-server/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/bitesla-server/docker-compose.yml -------------------------------------------------------------------------------- /bitesla-server/mysql/conf/my.cnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/bitesla-server/mysql/conf/my.cnf -------------------------------------------------------------------------------- /bitesla-server/mysql/conf/my.cnf_bck: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/bitesla-server/mysql/conf/my.cnf_bck -------------------------------------------------------------------------------- /bitesla-server/nsq/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bitesla-server/redis/conf/redis.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/bitesla-server/redis/conf/redis.conf -------------------------------------------------------------------------------- /bitesla.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/bitesla.sh -------------------------------------------------------------------------------- /common/constants/omit.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/common/constants/omit.go -------------------------------------------------------------------------------- /common/constants/redis_key.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/common/constants/redis_key.go -------------------------------------------------------------------------------- /common/errs/code.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/common/errs/code.go -------------------------------------------------------------------------------- /common/errs/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/common/errs/errors.go -------------------------------------------------------------------------------- /common/errs/msg.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/common/errs/msg.go -------------------------------------------------------------------------------- /common/hystrix/hystrix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/common/hystrix/hystrix.go -------------------------------------------------------------------------------- /common/hystrix/hystrix_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/common/hystrix/hystrix_test.go -------------------------------------------------------------------------------- /common/iniconfig/conf.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/common/iniconfig/conf.go -------------------------------------------------------------------------------- /common/iniconfig/conf_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/common/iniconfig/conf_test.go -------------------------------------------------------------------------------- /common/logger/daterot/daterot.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/common/logger/daterot/daterot.go -------------------------------------------------------------------------------- /common/logger/daterot/daterot_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/common/logger/daterot/daterot_test.go -------------------------------------------------------------------------------- /common/logger/daterot/vars.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/common/logger/daterot/vars.go -------------------------------------------------------------------------------- /common/logger/logger.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/common/logger/logger.go -------------------------------------------------------------------------------- /common/net/http/HttpUtils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/common/net/http/HttpUtils.go -------------------------------------------------------------------------------- /common/net/http/httpclient.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/common/net/http/httpclient.go -------------------------------------------------------------------------------- /common/net/websocket/websocket.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/common/net/websocket/websocket.go -------------------------------------------------------------------------------- /common/net/websocket/websocket_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/common/net/websocket/websocket_test.go -------------------------------------------------------------------------------- /common/util/amqp/amqp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/common/util/amqp/amqp.go -------------------------------------------------------------------------------- /common/util/amqp/log.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/common/util/amqp/log.go -------------------------------------------------------------------------------- /common/util/cache/redis.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/common/util/cache/redis.go -------------------------------------------------------------------------------- /common/util/common.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/common/util/common.go -------------------------------------------------------------------------------- /common/util/convert.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/common/util/convert.go -------------------------------------------------------------------------------- /common/util/crypt/aes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/common/util/crypt/aes.go -------------------------------------------------------------------------------- /common/util/crypt/hmac.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/common/util/crypt/hmac.go -------------------------------------------------------------------------------- /common/util/crypt/ll.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/common/util/crypt/ll.go -------------------------------------------------------------------------------- /common/util/crypt/md5.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/common/util/crypt/md5.go -------------------------------------------------------------------------------- /common/util/crypt/rsa.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/common/util/crypt/rsa.go -------------------------------------------------------------------------------- /common/util/email/email.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/common/util/email/email.go -------------------------------------------------------------------------------- /common/util/file/file.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/common/util/file/file.go -------------------------------------------------------------------------------- /common/util/googauth/googauth.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/common/util/googauth/googauth.go -------------------------------------------------------------------------------- /common/util/idgenerate/id.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/common/util/idgenerate/id.go -------------------------------------------------------------------------------- /common/util/jpush/jpush.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/common/util/jpush/jpush.go -------------------------------------------------------------------------------- /common/util/jwt/jwt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/common/util/jwt/jwt.go -------------------------------------------------------------------------------- /common/util/math/float/float.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/common/util/math/float/float.go -------------------------------------------------------------------------------- /common/util/mysql/converter/cmd/cli.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/common/util/mysql/converter/cmd/cli.go -------------------------------------------------------------------------------- /common/util/mysql/converter/cmd/make.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/common/util/mysql/converter/cmd/make.sh -------------------------------------------------------------------------------- /common/util/mysql/converter/cmd/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/common/util/mysql/converter/cmd/readme.md -------------------------------------------------------------------------------- /common/util/mysql/converter/table2struct.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/common/util/mysql/converter/table2struct.go -------------------------------------------------------------------------------- /common/util/mysql/converter/version.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/common/util/mysql/converter/version.go -------------------------------------------------------------------------------- /common/util/pay/pay.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/common/util/pay/pay.go -------------------------------------------------------------------------------- /common/util/slice/slice.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/common/util/slice/slice.go -------------------------------------------------------------------------------- /common/util/string.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/common/util/string.go -------------------------------------------------------------------------------- /common/util/string_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/common/util/string_test.go -------------------------------------------------------------------------------- /common/util/stringutl/base_util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/common/util/stringutl/base_util.go -------------------------------------------------------------------------------- /common/util/uuid_token_util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/common/util/uuid_token_util.go -------------------------------------------------------------------------------- /common/util/uuid_token_util_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/common/util/uuid_token_util_test.go -------------------------------------------------------------------------------- /common/vo/result.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/common/vo/result.go -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /img/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/img/1.png -------------------------------------------------------------------------------- /img/10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/img/10.jpg -------------------------------------------------------------------------------- /img/11.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/img/11.jpg -------------------------------------------------------------------------------- /img/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/img/2.png -------------------------------------------------------------------------------- /img/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/img/3.png -------------------------------------------------------------------------------- /img/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/img/4.png -------------------------------------------------------------------------------- /img/5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/img/5.jpg -------------------------------------------------------------------------------- /img/6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/img/6.jpg -------------------------------------------------------------------------------- /img/7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/img/7.jpg -------------------------------------------------------------------------------- /img/8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/img/8.jpg -------------------------------------------------------------------------------- /img/9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/img/9.jpg -------------------------------------------------------------------------------- /service/service-api/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-api/Dockerfile -------------------------------------------------------------------------------- /service/service-api/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-api/Makefile -------------------------------------------------------------------------------- /service/service-api/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-api/README.md -------------------------------------------------------------------------------- /service/service-api/conf/bitesla-config.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-api/conf/bitesla-config.ini -------------------------------------------------------------------------------- /service/service-api/conf/bitesla-env-dev.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-api/conf/bitesla-env-dev.ini -------------------------------------------------------------------------------- /service/service-api/conf/bitesla-env-prod.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-api/conf/bitesla-env-prod.ini -------------------------------------------------------------------------------- /service/service-api/conf/bitesla-env-test.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-api/conf/bitesla-env-test.ini -------------------------------------------------------------------------------- /service/service-api/conf/conf.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-api/conf/conf.go -------------------------------------------------------------------------------- /service/service-api/constants/constants.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-api/constants/constants.go -------------------------------------------------------------------------------- /service/service-api/db/db.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-api/db/db.go -------------------------------------------------------------------------------- /service/service-api/docs/docs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-api/docs/docs.go -------------------------------------------------------------------------------- /service/service-api/docs/swagger/swagger.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-api/docs/swagger/swagger.json -------------------------------------------------------------------------------- /service/service-api/docs/swagger/swagger.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-api/docs/swagger/swagger.yaml -------------------------------------------------------------------------------- /service/service-api/helper/rsa_helper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-api/helper/rsa_helper.go -------------------------------------------------------------------------------- /service/service-api/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-api/main.go -------------------------------------------------------------------------------- /service/service-api/midware/jwt/jwt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-api/midware/jwt/jwt.go -------------------------------------------------------------------------------- /service/service-api/midware/jwt/jwt_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-api/midware/jwt/jwt_test.go -------------------------------------------------------------------------------- /service/service-api/router/exchange_router.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-api/router/exchange_router.go -------------------------------------------------------------------------------- /service/service-api/router/model/exchange_Depth.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-api/router/model/exchange_Depth.go -------------------------------------------------------------------------------- /service/service-api/router/model/exchange_account.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-api/router/model/exchange_account.go -------------------------------------------------------------------------------- /service/service-api/router/model/exchange_cancel_order.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-api/router/model/exchange_cancel_order.go -------------------------------------------------------------------------------- /service/service-api/router/model/exchange_detail.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-api/router/model/exchange_detail.go -------------------------------------------------------------------------------- /service/service-api/router/model/exchange_info.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-api/router/model/exchange_info.go -------------------------------------------------------------------------------- /service/service-api/router/model/exchange_kline.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-api/router/model/exchange_kline.go -------------------------------------------------------------------------------- /service/service-api/router/model/exchange_list.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-api/router/model/exchange_list.go -------------------------------------------------------------------------------- /service/service-api/router/model/exchange_one_order.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-api/router/model/exchange_one_order.go -------------------------------------------------------------------------------- /service/service-api/router/model/exchange_order_history.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-api/router/model/exchange_order_history.go -------------------------------------------------------------------------------- /service/service-api/router/model/exchange_order_place.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-api/router/model/exchange_order_place.go -------------------------------------------------------------------------------- /service/service-api/router/model/exchange_ticker.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-api/router/model/exchange_ticker.go -------------------------------------------------------------------------------- /service/service-api/router/model/exchange_trades.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-api/router/model/exchange_trades.go -------------------------------------------------------------------------------- /service/service-api/router/model/exchange_unfinish_orders.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-api/router/model/exchange_unfinish_orders.go -------------------------------------------------------------------------------- /service/service-api/router/model/strategy_detail.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-api/router/model/strategy_detail.go -------------------------------------------------------------------------------- /service/service-api/router/model/strategy_list.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-api/router/model/strategy_list.go -------------------------------------------------------------------------------- /service/service-api/router/model/strategy_put.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-api/router/model/strategy_put.go -------------------------------------------------------------------------------- /service/service-api/router/model/trader_detail.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-api/router/model/trader_detail.go -------------------------------------------------------------------------------- /service/service-api/router/model/trader_list.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-api/router/model/trader_list.go -------------------------------------------------------------------------------- /service/service-api/router/model/trader_put.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-api/router/model/trader_put.go -------------------------------------------------------------------------------- /service/service-api/router/model/trader_switch.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-api/router/model/trader_switch.go -------------------------------------------------------------------------------- /service/service-api/router/model/trader_update_status.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-api/router/model/trader_update_status.go -------------------------------------------------------------------------------- /service/service-api/router/model/user_email_login.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-api/router/model/user_email_login.go -------------------------------------------------------------------------------- /service/service-api/router/model/user_email_register.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-api/router/model/user_email_register.go -------------------------------------------------------------------------------- /service/service-api/router/model/user_phone_login.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-api/router/model/user_phone_login.go -------------------------------------------------------------------------------- /service/service-api/router/model/user_phone_register.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-api/router/model/user_phone_register.go -------------------------------------------------------------------------------- /service/service-api/router/router.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-api/router/router.go -------------------------------------------------------------------------------- /service/service-api/router/strategy_router.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-api/router/strategy_router.go -------------------------------------------------------------------------------- /service/service-api/router/swag_router.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-api/router/swag_router.go -------------------------------------------------------------------------------- /service/service-api/router/trader_router.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-api/router/trader_router.go -------------------------------------------------------------------------------- /service/service-api/router/user_router.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-api/router/user_router.go -------------------------------------------------------------------------------- /service/service-api/vendor/github.com/armon/go-metrics/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-api/vendor/github.com/armon/go-metrics/LICENSE -------------------------------------------------------------------------------- /service/service-api/vendor/github.com/armon/go-metrics/sink.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-api/vendor/github.com/armon/go-metrics/sink.go -------------------------------------------------------------------------------- /service/service-api/vendor/github.com/campoy/embedmd/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-api/vendor/github.com/campoy/embedmd/LICENSE -------------------------------------------------------------------------------- /service/service-api/vendor/github.com/campoy/embedmd/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-api/vendor/github.com/campoy/embedmd/README.md -------------------------------------------------------------------------------- /service/service-api/vendor/github.com/campoy/embedmd/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-api/vendor/github.com/campoy/embedmd/main.go -------------------------------------------------------------------------------- /service/service-api/vendor/github.com/client9/misspell/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-api/vendor/github.com/client9/misspell/LICENSE -------------------------------------------------------------------------------- /service/service-api/vendor/github.com/client9/misspell/case.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-api/vendor/github.com/client9/misspell/case.go -------------------------------------------------------------------------------- /service/service-api/vendor/github.com/client9/misspell/mime.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-api/vendor/github.com/client9/misspell/mime.go -------------------------------------------------------------------------------- /service/service-api/vendor/github.com/client9/misspell/url.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-api/vendor/github.com/client9/misspell/url.go -------------------------------------------------------------------------------- /service/service-api/vendor/github.com/dgrijalva/jwt-go/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-api/vendor/github.com/dgrijalva/jwt-go/LICENSE -------------------------------------------------------------------------------- /service/service-api/vendor/github.com/dgrijalva/jwt-go/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-api/vendor/github.com/dgrijalva/jwt-go/doc.go -------------------------------------------------------------------------------- /service/service-api/vendor/github.com/dgrijalva/jwt-go/hmac.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-api/vendor/github.com/dgrijalva/jwt-go/hmac.go -------------------------------------------------------------------------------- /service/service-api/vendor/github.com/dgrijalva/jwt-go/none.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-api/vendor/github.com/dgrijalva/jwt-go/none.go -------------------------------------------------------------------------------- /service/service-api/vendor/github.com/dgrijalva/jwt-go/rsa.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-api/vendor/github.com/dgrijalva/jwt-go/rsa.go -------------------------------------------------------------------------------- /service/service-api/vendor/github.com/garyburd/redigo/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-api/vendor/github.com/garyburd/redigo/LICENSE -------------------------------------------------------------------------------- /service/service-api/vendor/github.com/gin-contrib/sse/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-api/vendor/github.com/gin-contrib/sse/LICENSE -------------------------------------------------------------------------------- /service/service-api/vendor/github.com/gin-gonic/autotls/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-api/vendor/github.com/gin-gonic/autotls/doc.go -------------------------------------------------------------------------------- /service/service-api/vendor/github.com/gin-gonic/gin/AUTHORS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-api/vendor/github.com/gin-gonic/gin/AUTHORS.md -------------------------------------------------------------------------------- /service/service-api/vendor/github.com/gin-gonic/gin/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-api/vendor/github.com/gin-gonic/gin/LICENSE -------------------------------------------------------------------------------- /service/service-api/vendor/github.com/gin-gonic/gin/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-api/vendor/github.com/gin-gonic/gin/Makefile -------------------------------------------------------------------------------- /service/service-api/vendor/github.com/gin-gonic/gin/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-api/vendor/github.com/gin-gonic/gin/README.md -------------------------------------------------------------------------------- /service/service-api/vendor/github.com/gin-gonic/gin/auth.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-api/vendor/github.com/gin-gonic/gin/auth.go -------------------------------------------------------------------------------- /service/service-api/vendor/github.com/gin-gonic/gin/context.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-api/vendor/github.com/gin-gonic/gin/context.go -------------------------------------------------------------------------------- /service/service-api/vendor/github.com/gin-gonic/gin/debug.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-api/vendor/github.com/gin-gonic/gin/debug.go -------------------------------------------------------------------------------- /service/service-api/vendor/github.com/gin-gonic/gin/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-api/vendor/github.com/gin-gonic/gin/doc.go -------------------------------------------------------------------------------- /service/service-api/vendor/github.com/gin-gonic/gin/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-api/vendor/github.com/gin-gonic/gin/errors.go -------------------------------------------------------------------------------- /service/service-api/vendor/github.com/gin-gonic/gin/fs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-api/vendor/github.com/gin-gonic/gin/fs.go -------------------------------------------------------------------------------- /service/service-api/vendor/github.com/gin-gonic/gin/gin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-api/vendor/github.com/gin-gonic/gin/gin.go -------------------------------------------------------------------------------- /service/service-api/vendor/github.com/gin-gonic/gin/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-api/vendor/github.com/gin-gonic/gin/go.mod -------------------------------------------------------------------------------- /service/service-api/vendor/github.com/gin-gonic/gin/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-api/vendor/github.com/gin-gonic/gin/go.sum -------------------------------------------------------------------------------- /service/service-api/vendor/github.com/gin-gonic/gin/logger.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-api/vendor/github.com/gin-gonic/gin/logger.go -------------------------------------------------------------------------------- /service/service-api/vendor/github.com/gin-gonic/gin/mode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-api/vendor/github.com/gin-gonic/gin/mode.go -------------------------------------------------------------------------------- /service/service-api/vendor/github.com/gin-gonic/gin/path.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-api/vendor/github.com/gin-gonic/gin/path.go -------------------------------------------------------------------------------- /service/service-api/vendor/github.com/gin-gonic/gin/tools.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-api/vendor/github.com/gin-gonic/gin/tools.go -------------------------------------------------------------------------------- /service/service-api/vendor/github.com/gin-gonic/gin/tree.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-api/vendor/github.com/gin-gonic/gin/tree.go -------------------------------------------------------------------------------- /service/service-api/vendor/github.com/gin-gonic/gin/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-api/vendor/github.com/gin-gonic/gin/utils.go -------------------------------------------------------------------------------- /service/service-api/vendor/github.com/gin-gonic/gin/version.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-api/vendor/github.com/gin-gonic/gin/version.go -------------------------------------------------------------------------------- /service/service-api/vendor/github.com/gin-gonic/gin/wercker.yml: -------------------------------------------------------------------------------- 1 | box: wercker/default -------------------------------------------------------------------------------- /service/service-api/vendor/github.com/go-log/log/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-api/vendor/github.com/go-log/log/LICENSE -------------------------------------------------------------------------------- /service/service-api/vendor/github.com/go-log/log/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-api/vendor/github.com/go-log/log/README.md -------------------------------------------------------------------------------- /service/service-api/vendor/github.com/go-log/log/log.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-api/vendor/github.com/go-log/log/log.go -------------------------------------------------------------------------------- /service/service-api/vendor/github.com/go-log/log/log/log.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-api/vendor/github.com/go-log/log/log/log.go -------------------------------------------------------------------------------- /service/service-api/vendor/github.com/go-openapi/spec/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-api/vendor/github.com/go-openapi/spec/LICENSE -------------------------------------------------------------------------------- /service/service-api/vendor/github.com/go-openapi/spec/debug.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-api/vendor/github.com/go-openapi/spec/debug.go -------------------------------------------------------------------------------- /service/service-api/vendor/github.com/go-openapi/spec/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-api/vendor/github.com/go-openapi/spec/go.mod -------------------------------------------------------------------------------- /service/service-api/vendor/github.com/go-openapi/spec/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-api/vendor/github.com/go-openapi/spec/go.sum -------------------------------------------------------------------------------- /service/service-api/vendor/github.com/go-openapi/spec/info.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-api/vendor/github.com/go-openapi/spec/info.go -------------------------------------------------------------------------------- /service/service-api/vendor/github.com/go-openapi/spec/items.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-api/vendor/github.com/go-openapi/spec/items.go -------------------------------------------------------------------------------- /service/service-api/vendor/github.com/go-openapi/spec/paths.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-api/vendor/github.com/go-openapi/spec/paths.go -------------------------------------------------------------------------------- /service/service-api/vendor/github.com/go-openapi/spec/ref.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-api/vendor/github.com/go-openapi/spec/ref.go -------------------------------------------------------------------------------- /service/service-api/vendor/github.com/go-openapi/spec/spec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-api/vendor/github.com/go-openapi/spec/spec.go -------------------------------------------------------------------------------- /service/service-api/vendor/github.com/go-openapi/spec/tag.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-api/vendor/github.com/go-openapi/spec/tag.go -------------------------------------------------------------------------------- /service/service-api/vendor/github.com/go-openapi/swag/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-api/vendor/github.com/go-openapi/swag/LICENSE -------------------------------------------------------------------------------- /service/service-api/vendor/github.com/go-openapi/swag/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-api/vendor/github.com/go-openapi/swag/doc.go -------------------------------------------------------------------------------- /service/service-api/vendor/github.com/go-openapi/swag/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-api/vendor/github.com/go-openapi/swag/go.mod -------------------------------------------------------------------------------- /service/service-api/vendor/github.com/go-openapi/swag/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-api/vendor/github.com/go-openapi/swag/go.sum -------------------------------------------------------------------------------- /service/service-api/vendor/github.com/go-openapi/swag/json.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-api/vendor/github.com/go-openapi/swag/json.go -------------------------------------------------------------------------------- /service/service-api/vendor/github.com/go-openapi/swag/net.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-api/vendor/github.com/go-openapi/swag/net.go -------------------------------------------------------------------------------- /service/service-api/vendor/github.com/go-openapi/swag/path.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-api/vendor/github.com/go-openapi/swag/path.go -------------------------------------------------------------------------------- /service/service-api/vendor/github.com/go-openapi/swag/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-api/vendor/github.com/go-openapi/swag/util.go -------------------------------------------------------------------------------- /service/service-api/vendor/github.com/go-openapi/swag/yaml.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-api/vendor/github.com/go-openapi/swag/yaml.go -------------------------------------------------------------------------------- /service/service-api/vendor/github.com/golang/protobuf/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-api/vendor/github.com/golang/protobuf/LICENSE -------------------------------------------------------------------------------- /service/service-api/vendor/github.com/google/uuid/CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-api/vendor/github.com/google/uuid/CONTRIBUTORS -------------------------------------------------------------------------------- /service/service-api/vendor/github.com/google/uuid/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-api/vendor/github.com/google/uuid/LICENSE -------------------------------------------------------------------------------- /service/service-api/vendor/github.com/google/uuid/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-api/vendor/github.com/google/uuid/README.md -------------------------------------------------------------------------------- /service/service-api/vendor/github.com/google/uuid/dce.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-api/vendor/github.com/google/uuid/dce.go -------------------------------------------------------------------------------- /service/service-api/vendor/github.com/google/uuid/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-api/vendor/github.com/google/uuid/doc.go -------------------------------------------------------------------------------- /service/service-api/vendor/github.com/google/uuid/go.mod: -------------------------------------------------------------------------------- 1 | module github.com/google/uuid 2 | -------------------------------------------------------------------------------- /service/service-api/vendor/github.com/google/uuid/hash.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-api/vendor/github.com/google/uuid/hash.go -------------------------------------------------------------------------------- /service/service-api/vendor/github.com/google/uuid/marshal.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-api/vendor/github.com/google/uuid/marshal.go -------------------------------------------------------------------------------- /service/service-api/vendor/github.com/google/uuid/node.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-api/vendor/github.com/google/uuid/node.go -------------------------------------------------------------------------------- /service/service-api/vendor/github.com/google/uuid/node_js.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-api/vendor/github.com/google/uuid/node_js.go -------------------------------------------------------------------------------- /service/service-api/vendor/github.com/google/uuid/node_net.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-api/vendor/github.com/google/uuid/node_net.go -------------------------------------------------------------------------------- /service/service-api/vendor/github.com/google/uuid/sql.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-api/vendor/github.com/google/uuid/sql.go -------------------------------------------------------------------------------- /service/service-api/vendor/github.com/google/uuid/time.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-api/vendor/github.com/google/uuid/time.go -------------------------------------------------------------------------------- /service/service-api/vendor/github.com/google/uuid/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-api/vendor/github.com/google/uuid/util.go -------------------------------------------------------------------------------- /service/service-api/vendor/github.com/google/uuid/uuid.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-api/vendor/github.com/google/uuid/uuid.go -------------------------------------------------------------------------------- /service/service-api/vendor/github.com/google/uuid/version1.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-api/vendor/github.com/google/uuid/version1.go -------------------------------------------------------------------------------- /service/service-api/vendor/github.com/google/uuid/version4.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-api/vendor/github.com/google/uuid/version4.go -------------------------------------------------------------------------------- /service/service-api/vendor/github.com/gorilla/websocket/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-api/vendor/github.com/gorilla/websocket/doc.go -------------------------------------------------------------------------------- /service/service-api/vendor/github.com/hashicorp/consul/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-api/vendor/github.com/hashicorp/consul/LICENSE -------------------------------------------------------------------------------- /service/service-api/vendor/github.com/hashicorp/serf/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-api/vendor/github.com/hashicorp/serf/LICENSE -------------------------------------------------------------------------------- /service/service-api/vendor/github.com/jinzhu/gorm/License: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-api/vendor/github.com/jinzhu/gorm/License -------------------------------------------------------------------------------- /service/service-api/vendor/github.com/jinzhu/gorm/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-api/vendor/github.com/jinzhu/gorm/README.md -------------------------------------------------------------------------------- /service/service-api/vendor/github.com/jinzhu/gorm/callback.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-api/vendor/github.com/jinzhu/gorm/callback.go -------------------------------------------------------------------------------- /service/service-api/vendor/github.com/jinzhu/gorm/dialect.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-api/vendor/github.com/jinzhu/gorm/dialect.go -------------------------------------------------------------------------------- /service/service-api/vendor/github.com/jinzhu/gorm/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-api/vendor/github.com/jinzhu/gorm/errors.go -------------------------------------------------------------------------------- /service/service-api/vendor/github.com/jinzhu/gorm/field.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-api/vendor/github.com/jinzhu/gorm/field.go -------------------------------------------------------------------------------- /service/service-api/vendor/github.com/jinzhu/gorm/logger.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-api/vendor/github.com/jinzhu/gorm/logger.go -------------------------------------------------------------------------------- /service/service-api/vendor/github.com/jinzhu/gorm/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-api/vendor/github.com/jinzhu/gorm/main.go -------------------------------------------------------------------------------- /service/service-api/vendor/github.com/jinzhu/gorm/model.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-api/vendor/github.com/jinzhu/gorm/model.go -------------------------------------------------------------------------------- /service/service-api/vendor/github.com/jinzhu/gorm/naming.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-api/vendor/github.com/jinzhu/gorm/naming.go -------------------------------------------------------------------------------- /service/service-api/vendor/github.com/jinzhu/gorm/scope.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-api/vendor/github.com/jinzhu/gorm/scope.go -------------------------------------------------------------------------------- /service/service-api/vendor/github.com/jinzhu/gorm/search.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-api/vendor/github.com/jinzhu/gorm/search.go -------------------------------------------------------------------------------- /service/service-api/vendor/github.com/jinzhu/gorm/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-api/vendor/github.com/jinzhu/gorm/utils.go -------------------------------------------------------------------------------- /service/service-api/vendor/github.com/konsorten/go-windows-terminal-sequences/go.mod: -------------------------------------------------------------------------------- 1 | module github.com/konsorten/go-windows-terminal-sequences 2 | -------------------------------------------------------------------------------- /service/service-api/vendor/github.com/micro/cli/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-api/vendor/github.com/micro/cli/LICENSE -------------------------------------------------------------------------------- /service/service-api/vendor/github.com/micro/cli/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-api/vendor/github.com/micro/cli/README.md -------------------------------------------------------------------------------- /service/service-api/vendor/github.com/micro/cli/app.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-api/vendor/github.com/micro/cli/app.go -------------------------------------------------------------------------------- /service/service-api/vendor/github.com/micro/cli/category.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-api/vendor/github.com/micro/cli/category.go -------------------------------------------------------------------------------- /service/service-api/vendor/github.com/micro/cli/cli.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-api/vendor/github.com/micro/cli/cli.go -------------------------------------------------------------------------------- /service/service-api/vendor/github.com/micro/cli/command.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-api/vendor/github.com/micro/cli/command.go -------------------------------------------------------------------------------- /service/service-api/vendor/github.com/micro/cli/context.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-api/vendor/github.com/micro/cli/context.go -------------------------------------------------------------------------------- /service/service-api/vendor/github.com/micro/cli/flag.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-api/vendor/github.com/micro/cli/flag.go -------------------------------------------------------------------------------- /service/service-api/vendor/github.com/micro/cli/help.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-api/vendor/github.com/micro/cli/help.go -------------------------------------------------------------------------------- /service/service-api/vendor/github.com/micro/go-log/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-api/vendor/github.com/micro/go-log/LICENSE -------------------------------------------------------------------------------- /service/service-api/vendor/github.com/micro/go-log/log.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-api/vendor/github.com/micro/go-log/log.go -------------------------------------------------------------------------------- /service/service-api/vendor/github.com/micro/go-web/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-api/vendor/github.com/micro/go-web/LICENSE -------------------------------------------------------------------------------- /service/service-api/vendor/github.com/micro/go-web/web.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-api/vendor/github.com/micro/go-web/web.go -------------------------------------------------------------------------------- /service/service-api/vendor/github.com/micro/mdns/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-api/vendor/github.com/micro/mdns/LICENSE -------------------------------------------------------------------------------- /service/service-api/vendor/github.com/micro/mdns/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-api/vendor/github.com/micro/mdns/README.md -------------------------------------------------------------------------------- /service/service-api/vendor/github.com/micro/mdns/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-api/vendor/github.com/micro/mdns/client.go -------------------------------------------------------------------------------- /service/service-api/vendor/github.com/micro/mdns/dns_sd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-api/vendor/github.com/micro/mdns/dns_sd.go -------------------------------------------------------------------------------- /service/service-api/vendor/github.com/micro/mdns/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-api/vendor/github.com/micro/mdns/server.go -------------------------------------------------------------------------------- /service/service-api/vendor/github.com/micro/mdns/zone.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-api/vendor/github.com/micro/mdns/zone.go -------------------------------------------------------------------------------- /service/service-api/vendor/github.com/micro/util/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-api/vendor/github.com/micro/util/LICENSE -------------------------------------------------------------------------------- /service/service-api/vendor/github.com/miekg/dns/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-api/vendor/github.com/miekg/dns/AUTHORS -------------------------------------------------------------------------------- /service/service-api/vendor/github.com/miekg/dns/COPYRIGHT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-api/vendor/github.com/miekg/dns/COPYRIGHT -------------------------------------------------------------------------------- /service/service-api/vendor/github.com/miekg/dns/Gopkg.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-api/vendor/github.com/miekg/dns/Gopkg.lock -------------------------------------------------------------------------------- /service/service-api/vendor/github.com/miekg/dns/Gopkg.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-api/vendor/github.com/miekg/dns/Gopkg.toml -------------------------------------------------------------------------------- /service/service-api/vendor/github.com/miekg/dns/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-api/vendor/github.com/miekg/dns/LICENSE -------------------------------------------------------------------------------- /service/service-api/vendor/github.com/miekg/dns/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-api/vendor/github.com/miekg/dns/README.md -------------------------------------------------------------------------------- /service/service-api/vendor/github.com/miekg/dns/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-api/vendor/github.com/miekg/dns/client.go -------------------------------------------------------------------------------- /service/service-api/vendor/github.com/miekg/dns/dane.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-api/vendor/github.com/miekg/dns/dane.go -------------------------------------------------------------------------------- /service/service-api/vendor/github.com/miekg/dns/defaults.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-api/vendor/github.com/miekg/dns/defaults.go -------------------------------------------------------------------------------- /service/service-api/vendor/github.com/miekg/dns/dns.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-api/vendor/github.com/miekg/dns/dns.go -------------------------------------------------------------------------------- /service/service-api/vendor/github.com/miekg/dns/dnssec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-api/vendor/github.com/miekg/dns/dnssec.go -------------------------------------------------------------------------------- /service/service-api/vendor/github.com/miekg/dns/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-api/vendor/github.com/miekg/dns/doc.go -------------------------------------------------------------------------------- /service/service-api/vendor/github.com/miekg/dns/edns.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-api/vendor/github.com/miekg/dns/edns.go -------------------------------------------------------------------------------- /service/service-api/vendor/github.com/miekg/dns/format.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-api/vendor/github.com/miekg/dns/format.go -------------------------------------------------------------------------------- /service/service-api/vendor/github.com/miekg/dns/fuzz.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-api/vendor/github.com/miekg/dns/fuzz.go -------------------------------------------------------------------------------- /service/service-api/vendor/github.com/miekg/dns/generate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-api/vendor/github.com/miekg/dns/generate.go -------------------------------------------------------------------------------- /service/service-api/vendor/github.com/miekg/dns/labels.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-api/vendor/github.com/miekg/dns/labels.go -------------------------------------------------------------------------------- /service/service-api/vendor/github.com/miekg/dns/msg.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-api/vendor/github.com/miekg/dns/msg.go -------------------------------------------------------------------------------- /service/service-api/vendor/github.com/miekg/dns/nsecx.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-api/vendor/github.com/miekg/dns/nsecx.go -------------------------------------------------------------------------------- /service/service-api/vendor/github.com/miekg/dns/rawmsg.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-api/vendor/github.com/miekg/dns/rawmsg.go -------------------------------------------------------------------------------- /service/service-api/vendor/github.com/miekg/dns/reverse.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-api/vendor/github.com/miekg/dns/reverse.go -------------------------------------------------------------------------------- /service/service-api/vendor/github.com/miekg/dns/sanitize.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-api/vendor/github.com/miekg/dns/sanitize.go -------------------------------------------------------------------------------- /service/service-api/vendor/github.com/miekg/dns/scan.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-api/vendor/github.com/miekg/dns/scan.go -------------------------------------------------------------------------------- /service/service-api/vendor/github.com/miekg/dns/scan_rr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-api/vendor/github.com/miekg/dns/scan_rr.go -------------------------------------------------------------------------------- /service/service-api/vendor/github.com/miekg/dns/scanner.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-api/vendor/github.com/miekg/dns/scanner.go -------------------------------------------------------------------------------- /service/service-api/vendor/github.com/miekg/dns/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-api/vendor/github.com/miekg/dns/server.go -------------------------------------------------------------------------------- /service/service-api/vendor/github.com/miekg/dns/sig0.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-api/vendor/github.com/miekg/dns/sig0.go -------------------------------------------------------------------------------- /service/service-api/vendor/github.com/miekg/dns/smimea.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-api/vendor/github.com/miekg/dns/smimea.go -------------------------------------------------------------------------------- /service/service-api/vendor/github.com/miekg/dns/tlsa.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-api/vendor/github.com/miekg/dns/tlsa.go -------------------------------------------------------------------------------- /service/service-api/vendor/github.com/miekg/dns/tsig.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-api/vendor/github.com/miekg/dns/tsig.go -------------------------------------------------------------------------------- /service/service-api/vendor/github.com/miekg/dns/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-api/vendor/github.com/miekg/dns/types.go -------------------------------------------------------------------------------- /service/service-api/vendor/github.com/miekg/dns/udp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-api/vendor/github.com/miekg/dns/udp.go -------------------------------------------------------------------------------- /service/service-api/vendor/github.com/miekg/dns/update.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-api/vendor/github.com/miekg/dns/update.go -------------------------------------------------------------------------------- /service/service-api/vendor/github.com/miekg/dns/version.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-api/vendor/github.com/miekg/dns/version.go -------------------------------------------------------------------------------- /service/service-api/vendor/github.com/miekg/dns/xfr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-api/vendor/github.com/miekg/dns/xfr.go -------------------------------------------------------------------------------- /service/service-api/vendor/github.com/miekg/dns/zmsg.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-api/vendor/github.com/miekg/dns/zmsg.go -------------------------------------------------------------------------------- /service/service-api/vendor/github.com/miekg/dns/ztypes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-api/vendor/github.com/miekg/dns/ztypes.go -------------------------------------------------------------------------------- /service/service-api/vendor/github.com/mitchellh/hashstructure/go.mod: -------------------------------------------------------------------------------- 1 | module github.com/mitchellh/hashstructure 2 | -------------------------------------------------------------------------------- /service/service-api/vendor/github.com/mitchellh/mapstructure/go.mod: -------------------------------------------------------------------------------- 1 | module github.com/mitchellh/mapstructure 2 | -------------------------------------------------------------------------------- /service/service-api/vendor/github.com/modern-go/reflect2/reflect2_amd64.s: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /service/service-api/vendor/github.com/modern-go/reflect2/relfect2_386.s: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /service/service-api/vendor/github.com/modern-go/reflect2/relfect2_amd64p32.s: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /service/service-api/vendor/github.com/modern-go/reflect2/relfect2_arm.s: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /service/service-api/vendor/github.com/modern-go/reflect2/relfect2_arm64.s: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /service/service-api/vendor/github.com/modern-go/reflect2/relfect2_mips64x.s: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /service/service-api/vendor/github.com/modern-go/reflect2/relfect2_mipsx.s: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /service/service-api/vendor/github.com/modern-go/reflect2/relfect2_ppc64x.s: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /service/service-api/vendor/github.com/modern-go/reflect2/relfect2_s390x.s: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /service/service-api/vendor/github.com/pborman/uuid/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-api/vendor/github.com/pborman/uuid/LICENSE -------------------------------------------------------------------------------- /service/service-api/vendor/github.com/pborman/uuid/dce.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-api/vendor/github.com/pborman/uuid/dce.go -------------------------------------------------------------------------------- /service/service-api/vendor/github.com/pborman/uuid/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-api/vendor/github.com/pborman/uuid/doc.go -------------------------------------------------------------------------------- /service/service-api/vendor/github.com/pborman/uuid/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-api/vendor/github.com/pborman/uuid/go.mod -------------------------------------------------------------------------------- /service/service-api/vendor/github.com/pborman/uuid/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-api/vendor/github.com/pborman/uuid/go.sum -------------------------------------------------------------------------------- /service/service-api/vendor/github.com/pborman/uuid/hash.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-api/vendor/github.com/pborman/uuid/hash.go -------------------------------------------------------------------------------- /service/service-api/vendor/github.com/pborman/uuid/node.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-api/vendor/github.com/pborman/uuid/node.go -------------------------------------------------------------------------------- /service/service-api/vendor/github.com/pborman/uuid/sql.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-api/vendor/github.com/pborman/uuid/sql.go -------------------------------------------------------------------------------- /service/service-api/vendor/github.com/pborman/uuid/time.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-api/vendor/github.com/pborman/uuid/time.go -------------------------------------------------------------------------------- /service/service-api/vendor/github.com/pborman/uuid/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-api/vendor/github.com/pborman/uuid/util.go -------------------------------------------------------------------------------- /service/service-api/vendor/github.com/pborman/uuid/uuid.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-api/vendor/github.com/pborman/uuid/uuid.go -------------------------------------------------------------------------------- /service/service-api/vendor/github.com/pkg/errors/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-api/vendor/github.com/pkg/errors/LICENSE -------------------------------------------------------------------------------- /service/service-api/vendor/github.com/pkg/errors/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-api/vendor/github.com/pkg/errors/README.md -------------------------------------------------------------------------------- /service/service-api/vendor/github.com/pkg/errors/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-api/vendor/github.com/pkg/errors/errors.go -------------------------------------------------------------------------------- /service/service-api/vendor/github.com/pkg/errors/stack.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-api/vendor/github.com/pkg/errors/stack.go -------------------------------------------------------------------------------- /service/service-api/vendor/github.com/swaggo/swag/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-api/vendor/github.com/swaggo/swag/Makefile -------------------------------------------------------------------------------- /service/service-api/vendor/github.com/swaggo/swag/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-api/vendor/github.com/swaggo/swag/README.md -------------------------------------------------------------------------------- /service/service-api/vendor/github.com/swaggo/swag/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-api/vendor/github.com/swaggo/swag/doc.go -------------------------------------------------------------------------------- /service/service-api/vendor/github.com/swaggo/swag/license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-api/vendor/github.com/swaggo/swag/license -------------------------------------------------------------------------------- /service/service-api/vendor/github.com/swaggo/swag/parser.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-api/vendor/github.com/swaggo/swag/parser.go -------------------------------------------------------------------------------- /service/service-api/vendor/github.com/swaggo/swag/schema.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-api/vendor/github.com/swaggo/swag/schema.go -------------------------------------------------------------------------------- /service/service-api/vendor/github.com/ugorji/go/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-api/vendor/github.com/ugorji/go/LICENSE -------------------------------------------------------------------------------- /service/service-api/vendor/github.com/ugorji/go/codec/go.mod: -------------------------------------------------------------------------------- 1 | module github.com/ugorji/go/codec 2 | 3 | -------------------------------------------------------------------------------- /service/service-api/vendor/golang.org/x/crypto/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-api/vendor/golang.org/x/crypto/LICENSE -------------------------------------------------------------------------------- /service/service-api/vendor/golang.org/x/crypto/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-api/vendor/golang.org/x/crypto/PATENTS -------------------------------------------------------------------------------- /service/service-api/vendor/golang.org/x/crypto/acme/acme.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-api/vendor/golang.org/x/crypto/acme/acme.go -------------------------------------------------------------------------------- /service/service-api/vendor/golang.org/x/crypto/acme/http.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-api/vendor/golang.org/x/crypto/acme/http.go -------------------------------------------------------------------------------- /service/service-api/vendor/golang.org/x/crypto/acme/jws.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-api/vendor/golang.org/x/crypto/acme/jws.go -------------------------------------------------------------------------------- /service/service-api/vendor/golang.org/x/lint/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-api/vendor/golang.org/x/lint/LICENSE -------------------------------------------------------------------------------- /service/service-api/vendor/golang.org/x/lint/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-api/vendor/golang.org/x/lint/README.md -------------------------------------------------------------------------------- /service/service-api/vendor/golang.org/x/lint/lint.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-api/vendor/golang.org/x/lint/lint.go -------------------------------------------------------------------------------- /service/service-api/vendor/golang.org/x/net/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-api/vendor/golang.org/x/net/LICENSE -------------------------------------------------------------------------------- /service/service-api/vendor/golang.org/x/net/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-api/vendor/golang.org/x/net/PATENTS -------------------------------------------------------------------------------- /service/service-api/vendor/golang.org/x/net/bpf/asm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-api/vendor/golang.org/x/net/bpf/asm.go -------------------------------------------------------------------------------- /service/service-api/vendor/golang.org/x/net/bpf/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-api/vendor/golang.org/x/net/bpf/doc.go -------------------------------------------------------------------------------- /service/service-api/vendor/golang.org/x/net/bpf/setter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-api/vendor/golang.org/x/net/bpf/setter.go -------------------------------------------------------------------------------- /service/service-api/vendor/golang.org/x/net/bpf/vm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-api/vendor/golang.org/x/net/bpf/vm.go -------------------------------------------------------------------------------- /service/service-api/vendor/golang.org/x/net/context/go17.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-api/vendor/golang.org/x/net/context/go17.go -------------------------------------------------------------------------------- /service/service-api/vendor/golang.org/x/net/context/go19.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-api/vendor/golang.org/x/net/context/go19.go -------------------------------------------------------------------------------- /service/service-api/vendor/golang.org/x/net/http2/Makefile: -------------------------------------------------------------------------------- 1 | curlimage: 2 | docker build -t gohttp2/curl . 3 | 4 | -------------------------------------------------------------------------------- /service/service-api/vendor/golang.org/x/net/http2/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-api/vendor/golang.org/x/net/http2/README -------------------------------------------------------------------------------- /service/service-api/vendor/golang.org/x/net/http2/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-api/vendor/golang.org/x/net/http2/errors.go -------------------------------------------------------------------------------- /service/service-api/vendor/golang.org/x/net/http2/flow.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-api/vendor/golang.org/x/net/http2/flow.go -------------------------------------------------------------------------------- /service/service-api/vendor/golang.org/x/net/http2/frame.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-api/vendor/golang.org/x/net/http2/frame.go -------------------------------------------------------------------------------- /service/service-api/vendor/golang.org/x/net/http2/go111.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-api/vendor/golang.org/x/net/http2/go111.go -------------------------------------------------------------------------------- /service/service-api/vendor/golang.org/x/net/http2/http2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-api/vendor/golang.org/x/net/http2/http2.go -------------------------------------------------------------------------------- /service/service-api/vendor/golang.org/x/net/http2/pipe.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-api/vendor/golang.org/x/net/http2/pipe.go -------------------------------------------------------------------------------- /service/service-api/vendor/golang.org/x/net/http2/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-api/vendor/golang.org/x/net/http2/server.go -------------------------------------------------------------------------------- /service/service-api/vendor/golang.org/x/net/http2/write.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-api/vendor/golang.org/x/net/http2/write.go -------------------------------------------------------------------------------- /service/service-api/vendor/golang.org/x/net/idna/idna.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-api/vendor/golang.org/x/net/idna/idna.go -------------------------------------------------------------------------------- /service/service-api/vendor/golang.org/x/net/idna/tables.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-api/vendor/golang.org/x/net/idna/tables.go -------------------------------------------------------------------------------- /service/service-api/vendor/golang.org/x/net/idna/trie.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-api/vendor/golang.org/x/net/idna/trie.go -------------------------------------------------------------------------------- /service/service-api/vendor/golang.org/x/net/idna/trieval.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-api/vendor/golang.org/x/net/idna/trieval.go -------------------------------------------------------------------------------- /service/service-api/vendor/golang.org/x/net/ipv4/batch.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-api/vendor/golang.org/x/net/ipv4/batch.go -------------------------------------------------------------------------------- /service/service-api/vendor/golang.org/x/net/ipv4/control.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-api/vendor/golang.org/x/net/ipv4/control.go -------------------------------------------------------------------------------- /service/service-api/vendor/golang.org/x/net/ipv4/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-api/vendor/golang.org/x/net/ipv4/doc.go -------------------------------------------------------------------------------- /service/service-api/vendor/golang.org/x/net/ipv4/gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-api/vendor/golang.org/x/net/ipv4/gen.go -------------------------------------------------------------------------------- /service/service-api/vendor/golang.org/x/net/ipv4/header.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-api/vendor/golang.org/x/net/ipv4/header.go -------------------------------------------------------------------------------- /service/service-api/vendor/golang.org/x/net/ipv4/helper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-api/vendor/golang.org/x/net/ipv4/helper.go -------------------------------------------------------------------------------- /service/service-api/vendor/golang.org/x/net/ipv4/iana.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-api/vendor/golang.org/x/net/ipv4/iana.go -------------------------------------------------------------------------------- /service/service-api/vendor/golang.org/x/net/ipv4/icmp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-api/vendor/golang.org/x/net/ipv4/icmp.go -------------------------------------------------------------------------------- /service/service-api/vendor/golang.org/x/net/ipv4/packet.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-api/vendor/golang.org/x/net/ipv4/packet.go -------------------------------------------------------------------------------- /service/service-api/vendor/golang.org/x/net/ipv4/payload.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-api/vendor/golang.org/x/net/ipv4/payload.go -------------------------------------------------------------------------------- /service/service-api/vendor/golang.org/x/net/ipv4/sockopt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-api/vendor/golang.org/x/net/ipv4/sockopt.go -------------------------------------------------------------------------------- /service/service-api/vendor/golang.org/x/net/ipv4/sys_bpf.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-api/vendor/golang.org/x/net/ipv4/sys_bpf.go -------------------------------------------------------------------------------- /service/service-api/vendor/golang.org/x/net/ipv4/sys_bsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-api/vendor/golang.org/x/net/ipv4/sys_bsd.go -------------------------------------------------------------------------------- /service/service-api/vendor/golang.org/x/net/ipv6/batch.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-api/vendor/golang.org/x/net/ipv6/batch.go -------------------------------------------------------------------------------- /service/service-api/vendor/golang.org/x/net/ipv6/control.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-api/vendor/golang.org/x/net/ipv6/control.go -------------------------------------------------------------------------------- /service/service-api/vendor/golang.org/x/net/ipv6/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-api/vendor/golang.org/x/net/ipv6/doc.go -------------------------------------------------------------------------------- /service/service-api/vendor/golang.org/x/net/ipv6/gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-api/vendor/golang.org/x/net/ipv6/gen.go -------------------------------------------------------------------------------- /service/service-api/vendor/golang.org/x/net/ipv6/header.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-api/vendor/golang.org/x/net/ipv6/header.go -------------------------------------------------------------------------------- /service/service-api/vendor/golang.org/x/net/ipv6/helper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-api/vendor/golang.org/x/net/ipv6/helper.go -------------------------------------------------------------------------------- /service/service-api/vendor/golang.org/x/net/ipv6/iana.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-api/vendor/golang.org/x/net/ipv6/iana.go -------------------------------------------------------------------------------- /service/service-api/vendor/golang.org/x/net/ipv6/icmp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-api/vendor/golang.org/x/net/ipv6/icmp.go -------------------------------------------------------------------------------- /service/service-api/vendor/golang.org/x/net/ipv6/payload.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-api/vendor/golang.org/x/net/ipv6/payload.go -------------------------------------------------------------------------------- /service/service-api/vendor/golang.org/x/net/ipv6/sockopt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-api/vendor/golang.org/x/net/ipv6/sockopt.go -------------------------------------------------------------------------------- /service/service-api/vendor/golang.org/x/net/ipv6/sys_bpf.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-api/vendor/golang.org/x/net/ipv6/sys_bpf.go -------------------------------------------------------------------------------- /service/service-api/vendor/golang.org/x/net/ipv6/sys_bsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-api/vendor/golang.org/x/net/ipv6/sys_bsd.go -------------------------------------------------------------------------------- /service/service-api/vendor/golang.org/x/net/trace/events.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-api/vendor/golang.org/x/net/trace/events.go -------------------------------------------------------------------------------- /service/service-api/vendor/golang.org/x/net/trace/trace.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-api/vendor/golang.org/x/net/trace/trace.go -------------------------------------------------------------------------------- /service/service-api/vendor/golang.org/x/net/webdav/file.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-api/vendor/golang.org/x/net/webdav/file.go -------------------------------------------------------------------------------- /service/service-api/vendor/golang.org/x/net/webdav/if.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-api/vendor/golang.org/x/net/webdav/if.go -------------------------------------------------------------------------------- /service/service-api/vendor/golang.org/x/net/webdav/lock.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-api/vendor/golang.org/x/net/webdav/lock.go -------------------------------------------------------------------------------- /service/service-api/vendor/golang.org/x/net/webdav/prop.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-api/vendor/golang.org/x/net/webdav/prop.go -------------------------------------------------------------------------------- /service/service-api/vendor/golang.org/x/net/webdav/xml.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-api/vendor/golang.org/x/net/webdav/xml.go -------------------------------------------------------------------------------- /service/service-api/vendor/golang.org/x/sys/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-api/vendor/golang.org/x/sys/LICENSE -------------------------------------------------------------------------------- /service/service-api/vendor/golang.org/x/sys/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-api/vendor/golang.org/x/sys/PATENTS -------------------------------------------------------------------------------- /service/service-api/vendor/golang.org/x/sys/unix/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-api/vendor/golang.org/x/sys/unix/README.md -------------------------------------------------------------------------------- /service/service-api/vendor/golang.org/x/sys/unix/aliases.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-api/vendor/golang.org/x/sys/unix/aliases.go -------------------------------------------------------------------------------- /service/service-api/vendor/golang.org/x/sys/unix/dirent.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-api/vendor/golang.org/x/sys/unix/dirent.go -------------------------------------------------------------------------------- /service/service-api/vendor/golang.org/x/sys/unix/fcntl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-api/vendor/golang.org/x/sys/unix/fcntl.go -------------------------------------------------------------------------------- /service/service-api/vendor/golang.org/x/sys/unix/gccgo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-api/vendor/golang.org/x/sys/unix/gccgo.go -------------------------------------------------------------------------------- /service/service-api/vendor/golang.org/x/sys/unix/gccgo_c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-api/vendor/golang.org/x/sys/unix/gccgo_c.c -------------------------------------------------------------------------------- /service/service-api/vendor/golang.org/x/sys/unix/ioctl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-api/vendor/golang.org/x/sys/unix/ioctl.go -------------------------------------------------------------------------------- /service/service-api/vendor/golang.org/x/sys/unix/mkall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-api/vendor/golang.org/x/sys/unix/mkall.sh -------------------------------------------------------------------------------- /service/service-api/vendor/golang.org/x/sys/unix/mkpost.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-api/vendor/golang.org/x/sys/unix/mkpost.go -------------------------------------------------------------------------------- /service/service-api/vendor/golang.org/x/sys/unix/race.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-api/vendor/golang.org/x/sys/unix/race.go -------------------------------------------------------------------------------- /service/service-api/vendor/golang.org/x/sys/unix/race0.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-api/vendor/golang.org/x/sys/unix/race0.go -------------------------------------------------------------------------------- /service/service-api/vendor/golang.org/x/sys/unix/str.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-api/vendor/golang.org/x/sys/unix/str.go -------------------------------------------------------------------------------- /service/service-api/vendor/golang.org/x/sys/unix/syscall.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-api/vendor/golang.org/x/sys/unix/syscall.go -------------------------------------------------------------------------------- /service/service-api/vendor/golang.org/x/sys/windows/race.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-api/vendor/golang.org/x/sys/windows/race.go -------------------------------------------------------------------------------- /service/service-api/vendor/golang.org/x/sys/windows/str.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-api/vendor/golang.org/x/sys/windows/str.go -------------------------------------------------------------------------------- /service/service-api/vendor/golang.org/x/text/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-api/vendor/golang.org/x/text/LICENSE -------------------------------------------------------------------------------- /service/service-api/vendor/golang.org/x/text/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-api/vendor/golang.org/x/text/PATENTS -------------------------------------------------------------------------------- /service/service-api/vendor/golang.org/x/text/width/gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-api/vendor/golang.org/x/text/width/gen.go -------------------------------------------------------------------------------- /service/service-api/vendor/golang.org/x/text/width/width.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-api/vendor/golang.org/x/text/width/width.go -------------------------------------------------------------------------------- /service/service-api/vendor/golang.org/x/tools/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-api/vendor/golang.org/x/tools/LICENSE -------------------------------------------------------------------------------- /service/service-api/vendor/golang.org/x/tools/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-api/vendor/golang.org/x/tools/PATENTS -------------------------------------------------------------------------------- /service/service-api/vendor/google.golang.org/grpc/AUTHORS: -------------------------------------------------------------------------------- 1 | Google Inc. 2 | -------------------------------------------------------------------------------- /service/service-api/vendor/google.golang.org/grpc/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-api/vendor/google.golang.org/grpc/LICENSE -------------------------------------------------------------------------------- /service/service-api/vendor/google.golang.org/grpc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-api/vendor/google.golang.org/grpc/Makefile -------------------------------------------------------------------------------- /service/service-api/vendor/google.golang.org/grpc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-api/vendor/google.golang.org/grpc/README.md -------------------------------------------------------------------------------- /service/service-api/vendor/google.golang.org/grpc/call.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-api/vendor/google.golang.org/grpc/call.go -------------------------------------------------------------------------------- /service/service-api/vendor/google.golang.org/grpc/codec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-api/vendor/google.golang.org/grpc/codec.go -------------------------------------------------------------------------------- /service/service-api/vendor/google.golang.org/grpc/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-api/vendor/google.golang.org/grpc/doc.go -------------------------------------------------------------------------------- /service/service-api/vendor/google.golang.org/grpc/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-api/vendor/google.golang.org/grpc/go.mod -------------------------------------------------------------------------------- /service/service-api/vendor/google.golang.org/grpc/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-api/vendor/google.golang.org/grpc/go.sum -------------------------------------------------------------------------------- /service/service-api/vendor/google.golang.org/grpc/proxy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-api/vendor/google.golang.org/grpc/proxy.go -------------------------------------------------------------------------------- /service/service-api/vendor/google.golang.org/grpc/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-api/vendor/google.golang.org/grpc/server.go -------------------------------------------------------------------------------- /service/service-api/vendor/google.golang.org/grpc/stream.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-api/vendor/google.golang.org/grpc/stream.go -------------------------------------------------------------------------------- /service/service-api/vendor/google.golang.org/grpc/trace.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-api/vendor/google.golang.org/grpc/trace.go -------------------------------------------------------------------------------- /service/service-api/vendor/google.golang.org/grpc/vet.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-api/vendor/google.golang.org/grpc/vet.sh -------------------------------------------------------------------------------- /service/service-api/vendor/gopkg.in/yaml.v2/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-api/vendor/gopkg.in/yaml.v2/LICENSE -------------------------------------------------------------------------------- /service/service-api/vendor/gopkg.in/yaml.v2/LICENSE.libyaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-api/vendor/gopkg.in/yaml.v2/LICENSE.libyaml -------------------------------------------------------------------------------- /service/service-api/vendor/gopkg.in/yaml.v2/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-api/vendor/gopkg.in/yaml.v2/NOTICE -------------------------------------------------------------------------------- /service/service-api/vendor/gopkg.in/yaml.v2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-api/vendor/gopkg.in/yaml.v2/README.md -------------------------------------------------------------------------------- /service/service-api/vendor/gopkg.in/yaml.v2/apic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-api/vendor/gopkg.in/yaml.v2/apic.go -------------------------------------------------------------------------------- /service/service-api/vendor/gopkg.in/yaml.v2/decode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-api/vendor/gopkg.in/yaml.v2/decode.go -------------------------------------------------------------------------------- /service/service-api/vendor/gopkg.in/yaml.v2/emitterc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-api/vendor/gopkg.in/yaml.v2/emitterc.go -------------------------------------------------------------------------------- /service/service-api/vendor/gopkg.in/yaml.v2/encode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-api/vendor/gopkg.in/yaml.v2/encode.go -------------------------------------------------------------------------------- /service/service-api/vendor/gopkg.in/yaml.v2/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-api/vendor/gopkg.in/yaml.v2/go.mod -------------------------------------------------------------------------------- /service/service-api/vendor/gopkg.in/yaml.v2/parserc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-api/vendor/gopkg.in/yaml.v2/parserc.go -------------------------------------------------------------------------------- /service/service-api/vendor/gopkg.in/yaml.v2/readerc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-api/vendor/gopkg.in/yaml.v2/readerc.go -------------------------------------------------------------------------------- /service/service-api/vendor/gopkg.in/yaml.v2/resolve.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-api/vendor/gopkg.in/yaml.v2/resolve.go -------------------------------------------------------------------------------- /service/service-api/vendor/gopkg.in/yaml.v2/scannerc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-api/vendor/gopkg.in/yaml.v2/scannerc.go -------------------------------------------------------------------------------- /service/service-api/vendor/gopkg.in/yaml.v2/sorter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-api/vendor/gopkg.in/yaml.v2/sorter.go -------------------------------------------------------------------------------- /service/service-api/vendor/gopkg.in/yaml.v2/writerc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-api/vendor/gopkg.in/yaml.v2/writerc.go -------------------------------------------------------------------------------- /service/service-api/vendor/gopkg.in/yaml.v2/yaml.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-api/vendor/gopkg.in/yaml.v2/yaml.go -------------------------------------------------------------------------------- /service/service-api/vendor/gopkg.in/yaml.v2/yamlh.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-api/vendor/gopkg.in/yaml.v2/yamlh.go -------------------------------------------------------------------------------- /service/service-api/vendor/gopkg.in/yaml.v2/yamlprivateh.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-api/vendor/gopkg.in/yaml.v2/yamlprivateh.go -------------------------------------------------------------------------------- /service/service-api/vendor/vendor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-api/vendor/vendor.json -------------------------------------------------------------------------------- /service/service-exchange/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-exchange/Dockerfile -------------------------------------------------------------------------------- /service/service-exchange/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-exchange/Makefile -------------------------------------------------------------------------------- /service/service-exchange/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-exchange/README.md -------------------------------------------------------------------------------- /service/service-exchange/client/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-exchange/client/client.go -------------------------------------------------------------------------------- /service/service-exchange/conf/bitesla-config.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-exchange/conf/bitesla-config.ini -------------------------------------------------------------------------------- /service/service-exchange/conf/bitesla-env-dev.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-exchange/conf/bitesla-env-dev.ini -------------------------------------------------------------------------------- /service/service-exchange/conf/bitesla-env-prod.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-exchange/conf/bitesla-env-prod.ini -------------------------------------------------------------------------------- /service/service-exchange/conf/bitesla-env-test.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-exchange/conf/bitesla-env-test.ini -------------------------------------------------------------------------------- /service/service-exchange/conf/conf.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-exchange/conf/conf.go -------------------------------------------------------------------------------- /service/service-exchange/db/db.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-exchange/db/db.go -------------------------------------------------------------------------------- /service/service-exchange/db/exchange_mapper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-exchange/db/exchange_mapper.go -------------------------------------------------------------------------------- /service/service-exchange/exchange/Const.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-exchange/exchange/Const.go -------------------------------------------------------------------------------- /service/service-exchange/exchange/HttpUtils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-exchange/exchange/HttpUtils.go -------------------------------------------------------------------------------- /service/service-exchange/exchange/ParamSignUtils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-exchange/exchange/ParamSignUtils.go -------------------------------------------------------------------------------- /service/service-exchange/exchange/Utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-exchange/exchange/Utils.go -------------------------------------------------------------------------------- /service/service-exchange/exchange/api.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-exchange/exchange/api.go -------------------------------------------------------------------------------- /service/service-exchange/exchange/builder/APIBuilder.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-exchange/exchange/builder/APIBuilder.go -------------------------------------------------------------------------------- /service/service-exchange/exchange/huobi/HuobiPro.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-exchange/exchange/huobi/HuobiPro.go -------------------------------------------------------------------------------- /service/service-exchange/exchange/websocket.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-exchange/exchange/websocket.go -------------------------------------------------------------------------------- /service/service-exchange/handler/exchange_handler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-exchange/handler/exchange_handler.go -------------------------------------------------------------------------------- /service/service-exchange/handler/exchange_resposity.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-exchange/handler/exchange_resposity.go -------------------------------------------------------------------------------- /service/service-exchange/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-exchange/main.go -------------------------------------------------------------------------------- /service/service-exchange/orm/exchange.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-exchange/orm/exchange.go -------------------------------------------------------------------------------- /service/service-exchange/orm/table2struct/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-exchange/orm/table2struct/main.go -------------------------------------------------------------------------------- /service/service-exchange/proto/exchange.micro.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-exchange/proto/exchange.micro.go -------------------------------------------------------------------------------- /service/service-exchange/proto/exchange.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-exchange/proto/exchange.pb.go -------------------------------------------------------------------------------- /service/service-exchange/proto/exchange.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-exchange/proto/exchange.proto -------------------------------------------------------------------------------- /service/service-exchange/proto/exchange_extend.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-exchange/proto/exchange_extend.go -------------------------------------------------------------------------------- /service/service-exchange/socket_test/client/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-exchange/socket_test/client/client.go -------------------------------------------------------------------------------- /service/service-exchange/socket_test/server/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-exchange/socket_test/server/server.go -------------------------------------------------------------------------------- /service/service-exchange/vendor/github.com/gin-gonic/gin/wercker.yml: -------------------------------------------------------------------------------- 1 | box: wercker/default -------------------------------------------------------------------------------- /service/service-exchange/vendor/github.com/google/uuid/go.mod: -------------------------------------------------------------------------------- 1 | module github.com/google/uuid 2 | -------------------------------------------------------------------------------- /service/service-exchange/vendor/github.com/konsorten/go-windows-terminal-sequences/go.mod: -------------------------------------------------------------------------------- 1 | module github.com/konsorten/go-windows-terminal-sequences 2 | -------------------------------------------------------------------------------- /service/service-exchange/vendor/github.com/micro/cli/app.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-exchange/vendor/github.com/micro/cli/app.go -------------------------------------------------------------------------------- /service/service-exchange/vendor/github.com/micro/cli/cli.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-exchange/vendor/github.com/micro/cli/cli.go -------------------------------------------------------------------------------- /service/service-exchange/vendor/github.com/miekg/dns/dns.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-exchange/vendor/github.com/miekg/dns/dns.go -------------------------------------------------------------------------------- /service/service-exchange/vendor/github.com/miekg/dns/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-exchange/vendor/github.com/miekg/dns/doc.go -------------------------------------------------------------------------------- /service/service-exchange/vendor/github.com/miekg/dns/msg.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-exchange/vendor/github.com/miekg/dns/msg.go -------------------------------------------------------------------------------- /service/service-exchange/vendor/github.com/miekg/dns/udp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-exchange/vendor/github.com/miekg/dns/udp.go -------------------------------------------------------------------------------- /service/service-exchange/vendor/github.com/miekg/dns/xfr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-exchange/vendor/github.com/miekg/dns/xfr.go -------------------------------------------------------------------------------- /service/service-exchange/vendor/github.com/mitchellh/hashstructure/go.mod: -------------------------------------------------------------------------------- 1 | module github.com/mitchellh/hashstructure 2 | -------------------------------------------------------------------------------- /service/service-exchange/vendor/github.com/mitchellh/mapstructure/go.mod: -------------------------------------------------------------------------------- 1 | module github.com/mitchellh/mapstructure 2 | -------------------------------------------------------------------------------- /service/service-exchange/vendor/github.com/modern-go/reflect2/reflect2_amd64.s: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /service/service-exchange/vendor/github.com/modern-go/reflect2/relfect2_386.s: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /service/service-exchange/vendor/github.com/modern-go/reflect2/relfect2_amd64p32.s: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /service/service-exchange/vendor/github.com/modern-go/reflect2/relfect2_arm.s: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /service/service-exchange/vendor/github.com/modern-go/reflect2/relfect2_arm64.s: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /service/service-exchange/vendor/github.com/modern-go/reflect2/relfect2_mips64x.s: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /service/service-exchange/vendor/github.com/modern-go/reflect2/relfect2_mipsx.s: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /service/service-exchange/vendor/github.com/modern-go/reflect2/relfect2_ppc64x.s: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /service/service-exchange/vendor/github.com/modern-go/reflect2/relfect2_s390x.s: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /service/service-exchange/vendor/github.com/ugorji/go/codec/go.mod: -------------------------------------------------------------------------------- 1 | module github.com/ugorji/go/codec 2 | 3 | -------------------------------------------------------------------------------- /service/service-exchange/vendor/golang.org/x/crypto/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-exchange/vendor/golang.org/x/crypto/LICENSE -------------------------------------------------------------------------------- /service/service-exchange/vendor/golang.org/x/crypto/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-exchange/vendor/golang.org/x/crypto/PATENTS -------------------------------------------------------------------------------- /service/service-exchange/vendor/golang.org/x/lint/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-exchange/vendor/golang.org/x/lint/LICENSE -------------------------------------------------------------------------------- /service/service-exchange/vendor/golang.org/x/lint/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-exchange/vendor/golang.org/x/lint/README.md -------------------------------------------------------------------------------- /service/service-exchange/vendor/golang.org/x/lint/lint.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-exchange/vendor/golang.org/x/lint/lint.go -------------------------------------------------------------------------------- /service/service-exchange/vendor/golang.org/x/net/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-exchange/vendor/golang.org/x/net/LICENSE -------------------------------------------------------------------------------- /service/service-exchange/vendor/golang.org/x/net/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-exchange/vendor/golang.org/x/net/PATENTS -------------------------------------------------------------------------------- /service/service-exchange/vendor/golang.org/x/net/bpf/asm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-exchange/vendor/golang.org/x/net/bpf/asm.go -------------------------------------------------------------------------------- /service/service-exchange/vendor/golang.org/x/net/bpf/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-exchange/vendor/golang.org/x/net/bpf/doc.go -------------------------------------------------------------------------------- /service/service-exchange/vendor/golang.org/x/net/bpf/vm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-exchange/vendor/golang.org/x/net/bpf/vm.go -------------------------------------------------------------------------------- /service/service-exchange/vendor/golang.org/x/net/http2/Makefile: -------------------------------------------------------------------------------- 1 | curlimage: 2 | docker build -t gohttp2/curl . 3 | 4 | -------------------------------------------------------------------------------- /service/service-exchange/vendor/golang.org/x/sys/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-exchange/vendor/golang.org/x/sys/LICENSE -------------------------------------------------------------------------------- /service/service-exchange/vendor/golang.org/x/sys/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-exchange/vendor/golang.org/x/sys/PATENTS -------------------------------------------------------------------------------- /service/service-exchange/vendor/golang.org/x/text/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-exchange/vendor/golang.org/x/text/LICENSE -------------------------------------------------------------------------------- /service/service-exchange/vendor/golang.org/x/text/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-exchange/vendor/golang.org/x/text/PATENTS -------------------------------------------------------------------------------- /service/service-exchange/vendor/golang.org/x/tools/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-exchange/vendor/golang.org/x/tools/LICENSE -------------------------------------------------------------------------------- /service/service-exchange/vendor/golang.org/x/tools/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-exchange/vendor/golang.org/x/tools/PATENTS -------------------------------------------------------------------------------- /service/service-exchange/vendor/google.golang.org/grpc/AUTHORS: -------------------------------------------------------------------------------- 1 | Google Inc. 2 | -------------------------------------------------------------------------------- /service/service-exchange/vendor/gopkg.in/yaml.v2/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-exchange/vendor/gopkg.in/yaml.v2/LICENSE -------------------------------------------------------------------------------- /service/service-exchange/vendor/gopkg.in/yaml.v2/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-exchange/vendor/gopkg.in/yaml.v2/NOTICE -------------------------------------------------------------------------------- /service/service-exchange/vendor/gopkg.in/yaml.v2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-exchange/vendor/gopkg.in/yaml.v2/README.md -------------------------------------------------------------------------------- /service/service-exchange/vendor/gopkg.in/yaml.v2/apic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-exchange/vendor/gopkg.in/yaml.v2/apic.go -------------------------------------------------------------------------------- /service/service-exchange/vendor/gopkg.in/yaml.v2/decode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-exchange/vendor/gopkg.in/yaml.v2/decode.go -------------------------------------------------------------------------------- /service/service-exchange/vendor/gopkg.in/yaml.v2/encode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-exchange/vendor/gopkg.in/yaml.v2/encode.go -------------------------------------------------------------------------------- /service/service-exchange/vendor/gopkg.in/yaml.v2/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-exchange/vendor/gopkg.in/yaml.v2/go.mod -------------------------------------------------------------------------------- /service/service-exchange/vendor/gopkg.in/yaml.v2/parserc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-exchange/vendor/gopkg.in/yaml.v2/parserc.go -------------------------------------------------------------------------------- /service/service-exchange/vendor/gopkg.in/yaml.v2/readerc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-exchange/vendor/gopkg.in/yaml.v2/readerc.go -------------------------------------------------------------------------------- /service/service-exchange/vendor/gopkg.in/yaml.v2/resolve.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-exchange/vendor/gopkg.in/yaml.v2/resolve.go -------------------------------------------------------------------------------- /service/service-exchange/vendor/gopkg.in/yaml.v2/sorter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-exchange/vendor/gopkg.in/yaml.v2/sorter.go -------------------------------------------------------------------------------- /service/service-exchange/vendor/gopkg.in/yaml.v2/writerc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-exchange/vendor/gopkg.in/yaml.v2/writerc.go -------------------------------------------------------------------------------- /service/service-exchange/vendor/gopkg.in/yaml.v2/yaml.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-exchange/vendor/gopkg.in/yaml.v2/yaml.go -------------------------------------------------------------------------------- /service/service-exchange/vendor/gopkg.in/yaml.v2/yamlh.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-exchange/vendor/gopkg.in/yaml.v2/yamlh.go -------------------------------------------------------------------------------- /service/service-exchange/vendor/vendor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-exchange/vendor/vendor.json -------------------------------------------------------------------------------- /service/service-strategy/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-strategy/Dockerfile -------------------------------------------------------------------------------- /service/service-strategy/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-strategy/Makefile -------------------------------------------------------------------------------- /service/service-strategy/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-strategy/README.md -------------------------------------------------------------------------------- /service/service-strategy/client/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-strategy/client/client.go -------------------------------------------------------------------------------- /service/service-strategy/conf/bitesla-config.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-strategy/conf/bitesla-config.ini -------------------------------------------------------------------------------- /service/service-strategy/conf/bitesla-env-dev.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-strategy/conf/bitesla-env-dev.ini -------------------------------------------------------------------------------- /service/service-strategy/conf/bitesla-env-prod.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-strategy/conf/bitesla-env-prod.ini -------------------------------------------------------------------------------- /service/service-strategy/conf/bitesla-env-test.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-strategy/conf/bitesla-env-test.ini -------------------------------------------------------------------------------- /service/service-strategy/conf/conf.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-strategy/conf/conf.go -------------------------------------------------------------------------------- /service/service-strategy/db/db.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-strategy/db/db.go -------------------------------------------------------------------------------- /service/service-strategy/db/strategy_mapper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-strategy/db/strategy_mapper.go -------------------------------------------------------------------------------- /service/service-strategy/handler/strategy_handler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-strategy/handler/strategy_handler.go -------------------------------------------------------------------------------- /service/service-strategy/handler/strategy_resposity.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-strategy/handler/strategy_resposity.go -------------------------------------------------------------------------------- /service/service-strategy/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-strategy/main.go -------------------------------------------------------------------------------- /service/service-strategy/orm/strategy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-strategy/orm/strategy.go -------------------------------------------------------------------------------- /service/service-strategy/orm/table2struct/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-strategy/orm/table2struct/main.go -------------------------------------------------------------------------------- /service/service-strategy/proto/strategy.micro.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-strategy/proto/strategy.micro.go -------------------------------------------------------------------------------- /service/service-strategy/proto/strategy.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-strategy/proto/strategy.pb.go -------------------------------------------------------------------------------- /service/service-strategy/proto/strategy.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-strategy/proto/strategy.proto -------------------------------------------------------------------------------- /service/service-strategy/vendor/github.com/google/uuid/go.mod: -------------------------------------------------------------------------------- 1 | module github.com/google/uuid 2 | -------------------------------------------------------------------------------- /service/service-strategy/vendor/github.com/konsorten/go-windows-terminal-sequences/go.mod: -------------------------------------------------------------------------------- 1 | module github.com/konsorten/go-windows-terminal-sequences 2 | -------------------------------------------------------------------------------- /service/service-strategy/vendor/github.com/micro/cli/app.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-strategy/vendor/github.com/micro/cli/app.go -------------------------------------------------------------------------------- /service/service-strategy/vendor/github.com/micro/cli/cli.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-strategy/vendor/github.com/micro/cli/cli.go -------------------------------------------------------------------------------- /service/service-strategy/vendor/github.com/miekg/dns/dns.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-strategy/vendor/github.com/miekg/dns/dns.go -------------------------------------------------------------------------------- /service/service-strategy/vendor/github.com/miekg/dns/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-strategy/vendor/github.com/miekg/dns/doc.go -------------------------------------------------------------------------------- /service/service-strategy/vendor/github.com/miekg/dns/msg.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-strategy/vendor/github.com/miekg/dns/msg.go -------------------------------------------------------------------------------- /service/service-strategy/vendor/github.com/miekg/dns/udp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-strategy/vendor/github.com/miekg/dns/udp.go -------------------------------------------------------------------------------- /service/service-strategy/vendor/github.com/miekg/dns/xfr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-strategy/vendor/github.com/miekg/dns/xfr.go -------------------------------------------------------------------------------- /service/service-strategy/vendor/github.com/mitchellh/hashstructure/go.mod: -------------------------------------------------------------------------------- 1 | module github.com/mitchellh/hashstructure 2 | -------------------------------------------------------------------------------- /service/service-strategy/vendor/github.com/mitchellh/mapstructure/go.mod: -------------------------------------------------------------------------------- 1 | module github.com/mitchellh/mapstructure 2 | -------------------------------------------------------------------------------- /service/service-strategy/vendor/golang.org/x/crypto/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-strategy/vendor/golang.org/x/crypto/LICENSE -------------------------------------------------------------------------------- /service/service-strategy/vendor/golang.org/x/crypto/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-strategy/vendor/golang.org/x/crypto/PATENTS -------------------------------------------------------------------------------- /service/service-strategy/vendor/golang.org/x/net/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-strategy/vendor/golang.org/x/net/LICENSE -------------------------------------------------------------------------------- /service/service-strategy/vendor/golang.org/x/net/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-strategy/vendor/golang.org/x/net/PATENTS -------------------------------------------------------------------------------- /service/service-strategy/vendor/golang.org/x/net/bpf/asm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-strategy/vendor/golang.org/x/net/bpf/asm.go -------------------------------------------------------------------------------- /service/service-strategy/vendor/golang.org/x/net/bpf/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-strategy/vendor/golang.org/x/net/bpf/doc.go -------------------------------------------------------------------------------- /service/service-strategy/vendor/golang.org/x/net/bpf/vm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-strategy/vendor/golang.org/x/net/bpf/vm.go -------------------------------------------------------------------------------- /service/service-strategy/vendor/golang.org/x/sys/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-strategy/vendor/golang.org/x/sys/LICENSE -------------------------------------------------------------------------------- /service/service-strategy/vendor/golang.org/x/sys/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-strategy/vendor/golang.org/x/sys/PATENTS -------------------------------------------------------------------------------- /service/service-strategy/vendor/vendor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-strategy/vendor/vendor.json -------------------------------------------------------------------------------- /service/service-trader/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-trader/Dockerfile -------------------------------------------------------------------------------- /service/service-trader/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-trader/Makefile -------------------------------------------------------------------------------- /service/service-trader/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-trader/README.md -------------------------------------------------------------------------------- /service/service-trader/client/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-trader/client/client.go -------------------------------------------------------------------------------- /service/service-trader/conf/bitesla-config.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-trader/conf/bitesla-config.ini -------------------------------------------------------------------------------- /service/service-trader/conf/bitesla-env-dev.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-trader/conf/bitesla-env-dev.ini -------------------------------------------------------------------------------- /service/service-trader/conf/bitesla-env-prod.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-trader/conf/bitesla-env-prod.ini -------------------------------------------------------------------------------- /service/service-trader/conf/bitesla-env-test.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-trader/conf/bitesla-env-test.ini -------------------------------------------------------------------------------- /service/service-trader/conf/conf.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-trader/conf/conf.go -------------------------------------------------------------------------------- /service/service-trader/constant/constant.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-trader/constant/constant.go -------------------------------------------------------------------------------- /service/service-trader/db/db.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-trader/db/db.go -------------------------------------------------------------------------------- /service/service-trader/db/trader_mapper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-trader/db/trader_mapper.go -------------------------------------------------------------------------------- /service/service-trader/example/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-trader/example/main.go -------------------------------------------------------------------------------- /service/service-trader/handler/trader_handler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-trader/handler/trader_handler.go -------------------------------------------------------------------------------- /service/service-trader/handler/trader_resposity.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-trader/handler/trader_resposity.go -------------------------------------------------------------------------------- /service/service-trader/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-trader/main.go -------------------------------------------------------------------------------- /service/service-trader/model/global.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-trader/model/global.go -------------------------------------------------------------------------------- /service/service-trader/orm/table2struct/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-trader/orm/table2struct/main.go -------------------------------------------------------------------------------- /service/service-trader/orm/trader.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-trader/orm/trader.go -------------------------------------------------------------------------------- /service/service-trader/proto/trader.micro.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-trader/proto/trader.micro.go -------------------------------------------------------------------------------- /service/service-trader/proto/trader.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-trader/proto/trader.pb.go -------------------------------------------------------------------------------- /service/service-trader/proto/trader.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-trader/proto/trader.proto -------------------------------------------------------------------------------- /service/service-trader/trader/trader_queue.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-trader/trader/trader_queue.go -------------------------------------------------------------------------------- /service/service-trader/vendor/github.com/go-log/log/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-trader/vendor/github.com/go-log/log/LICENSE -------------------------------------------------------------------------------- /service/service-trader/vendor/github.com/go-log/log/log.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-trader/vendor/github.com/go-log/log/log.go -------------------------------------------------------------------------------- /service/service-trader/vendor/github.com/google/uuid/dce.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-trader/vendor/github.com/google/uuid/dce.go -------------------------------------------------------------------------------- /service/service-trader/vendor/github.com/google/uuid/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-trader/vendor/github.com/google/uuid/doc.go -------------------------------------------------------------------------------- /service/service-trader/vendor/github.com/google/uuid/go.mod: -------------------------------------------------------------------------------- 1 | module github.com/google/uuid 2 | -------------------------------------------------------------------------------- /service/service-trader/vendor/github.com/google/uuid/sql.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-trader/vendor/github.com/google/uuid/sql.go -------------------------------------------------------------------------------- /service/service-trader/vendor/github.com/konsorten/go-windows-terminal-sequences/go.mod: -------------------------------------------------------------------------------- 1 | module github.com/konsorten/go-windows-terminal-sequences 2 | -------------------------------------------------------------------------------- /service/service-trader/vendor/github.com/micro/cli/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-trader/vendor/github.com/micro/cli/LICENSE -------------------------------------------------------------------------------- /service/service-trader/vendor/github.com/micro/cli/app.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-trader/vendor/github.com/micro/cli/app.go -------------------------------------------------------------------------------- /service/service-trader/vendor/github.com/micro/cli/cli.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-trader/vendor/github.com/micro/cli/cli.go -------------------------------------------------------------------------------- /service/service-trader/vendor/github.com/micro/cli/flag.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-trader/vendor/github.com/micro/cli/flag.go -------------------------------------------------------------------------------- /service/service-trader/vendor/github.com/micro/cli/help.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-trader/vendor/github.com/micro/cli/help.go -------------------------------------------------------------------------------- /service/service-trader/vendor/github.com/micro/mdns/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-trader/vendor/github.com/micro/mdns/LICENSE -------------------------------------------------------------------------------- /service/service-trader/vendor/github.com/micro/mdns/zone.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-trader/vendor/github.com/micro/mdns/zone.go -------------------------------------------------------------------------------- /service/service-trader/vendor/github.com/micro/util/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-trader/vendor/github.com/micro/util/LICENSE -------------------------------------------------------------------------------- /service/service-trader/vendor/github.com/miekg/dns/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-trader/vendor/github.com/miekg/dns/AUTHORS -------------------------------------------------------------------------------- /service/service-trader/vendor/github.com/miekg/dns/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-trader/vendor/github.com/miekg/dns/LICENSE -------------------------------------------------------------------------------- /service/service-trader/vendor/github.com/miekg/dns/dane.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-trader/vendor/github.com/miekg/dns/dane.go -------------------------------------------------------------------------------- /service/service-trader/vendor/github.com/miekg/dns/dns.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-trader/vendor/github.com/miekg/dns/dns.go -------------------------------------------------------------------------------- /service/service-trader/vendor/github.com/miekg/dns/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-trader/vendor/github.com/miekg/dns/doc.go -------------------------------------------------------------------------------- /service/service-trader/vendor/github.com/miekg/dns/edns.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-trader/vendor/github.com/miekg/dns/edns.go -------------------------------------------------------------------------------- /service/service-trader/vendor/github.com/miekg/dns/fuzz.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-trader/vendor/github.com/miekg/dns/fuzz.go -------------------------------------------------------------------------------- /service/service-trader/vendor/github.com/miekg/dns/msg.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-trader/vendor/github.com/miekg/dns/msg.go -------------------------------------------------------------------------------- /service/service-trader/vendor/github.com/miekg/dns/nsecx.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-trader/vendor/github.com/miekg/dns/nsecx.go -------------------------------------------------------------------------------- /service/service-trader/vendor/github.com/miekg/dns/scan.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-trader/vendor/github.com/miekg/dns/scan.go -------------------------------------------------------------------------------- /service/service-trader/vendor/github.com/miekg/dns/sig0.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-trader/vendor/github.com/miekg/dns/sig0.go -------------------------------------------------------------------------------- /service/service-trader/vendor/github.com/miekg/dns/tlsa.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-trader/vendor/github.com/miekg/dns/tlsa.go -------------------------------------------------------------------------------- /service/service-trader/vendor/github.com/miekg/dns/tsig.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-trader/vendor/github.com/miekg/dns/tsig.go -------------------------------------------------------------------------------- /service/service-trader/vendor/github.com/miekg/dns/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-trader/vendor/github.com/miekg/dns/types.go -------------------------------------------------------------------------------- /service/service-trader/vendor/github.com/miekg/dns/udp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-trader/vendor/github.com/miekg/dns/udp.go -------------------------------------------------------------------------------- /service/service-trader/vendor/github.com/miekg/dns/xfr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-trader/vendor/github.com/miekg/dns/xfr.go -------------------------------------------------------------------------------- /service/service-trader/vendor/github.com/miekg/dns/zmsg.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-trader/vendor/github.com/miekg/dns/zmsg.go -------------------------------------------------------------------------------- /service/service-trader/vendor/github.com/mitchellh/hashstructure/go.mod: -------------------------------------------------------------------------------- 1 | module github.com/mitchellh/hashstructure 2 | -------------------------------------------------------------------------------- /service/service-trader/vendor/github.com/mitchellh/mapstructure/go.mod: -------------------------------------------------------------------------------- 1 | module github.com/mitchellh/mapstructure 2 | -------------------------------------------------------------------------------- /service/service-trader/vendor/github.com/pkg/errors/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-trader/vendor/github.com/pkg/errors/LICENSE -------------------------------------------------------------------------------- /service/service-trader/vendor/golang.org/x/crypto/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-trader/vendor/golang.org/x/crypto/LICENSE -------------------------------------------------------------------------------- /service/service-trader/vendor/golang.org/x/crypto/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-trader/vendor/golang.org/x/crypto/PATENTS -------------------------------------------------------------------------------- /service/service-trader/vendor/golang.org/x/net/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-trader/vendor/golang.org/x/net/LICENSE -------------------------------------------------------------------------------- /service/service-trader/vendor/golang.org/x/net/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-trader/vendor/golang.org/x/net/PATENTS -------------------------------------------------------------------------------- /service/service-trader/vendor/golang.org/x/net/bpf/asm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-trader/vendor/golang.org/x/net/bpf/asm.go -------------------------------------------------------------------------------- /service/service-trader/vendor/golang.org/x/net/bpf/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-trader/vendor/golang.org/x/net/bpf/doc.go -------------------------------------------------------------------------------- /service/service-trader/vendor/golang.org/x/net/bpf/vm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-trader/vendor/golang.org/x/net/bpf/vm.go -------------------------------------------------------------------------------- /service/service-trader/vendor/golang.org/x/net/ipv4/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-trader/vendor/golang.org/x/net/ipv4/doc.go -------------------------------------------------------------------------------- /service/service-trader/vendor/golang.org/x/net/ipv4/gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-trader/vendor/golang.org/x/net/ipv4/gen.go -------------------------------------------------------------------------------- /service/service-trader/vendor/golang.org/x/net/ipv4/iana.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-trader/vendor/golang.org/x/net/ipv4/iana.go -------------------------------------------------------------------------------- /service/service-trader/vendor/golang.org/x/net/ipv4/icmp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-trader/vendor/golang.org/x/net/ipv4/icmp.go -------------------------------------------------------------------------------- /service/service-trader/vendor/golang.org/x/net/ipv6/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-trader/vendor/golang.org/x/net/ipv6/doc.go -------------------------------------------------------------------------------- /service/service-trader/vendor/golang.org/x/net/ipv6/gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-trader/vendor/golang.org/x/net/ipv6/gen.go -------------------------------------------------------------------------------- /service/service-trader/vendor/golang.org/x/net/ipv6/iana.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-trader/vendor/golang.org/x/net/ipv6/iana.go -------------------------------------------------------------------------------- /service/service-trader/vendor/golang.org/x/net/ipv6/icmp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-trader/vendor/golang.org/x/net/ipv6/icmp.go -------------------------------------------------------------------------------- /service/service-trader/vendor/golang.org/x/sys/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-trader/vendor/golang.org/x/sys/LICENSE -------------------------------------------------------------------------------- /service/service-trader/vendor/golang.org/x/sys/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-trader/vendor/golang.org/x/sys/PATENTS -------------------------------------------------------------------------------- /service/service-trader/vendor/golang.org/x/sys/unix/race.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-trader/vendor/golang.org/x/sys/unix/race.go -------------------------------------------------------------------------------- /service/service-trader/vendor/golang.org/x/sys/unix/str.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-trader/vendor/golang.org/x/sys/unix/str.go -------------------------------------------------------------------------------- /service/service-trader/vendor/gopkg.in/sourcemap.v1/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-trader/vendor/gopkg.in/sourcemap.v1/LICENSE -------------------------------------------------------------------------------- /service/service-trader/vendor/vendor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-trader/vendor/vendor.json -------------------------------------------------------------------------------- /service/service-user/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-user/Dockerfile -------------------------------------------------------------------------------- /service/service-user/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-user/Makefile -------------------------------------------------------------------------------- /service/service-user/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-user/README.md -------------------------------------------------------------------------------- /service/service-user/client/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-user/client/client.go -------------------------------------------------------------------------------- /service/service-user/conf/bitesla-config.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-user/conf/bitesla-config.ini -------------------------------------------------------------------------------- /service/service-user/conf/bitesla-env-dev.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-user/conf/bitesla-env-dev.ini -------------------------------------------------------------------------------- /service/service-user/conf/bitesla-env-prod.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-user/conf/bitesla-env-prod.ini -------------------------------------------------------------------------------- /service/service-user/conf/bitesla-env-test.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-user/conf/bitesla-env-test.ini -------------------------------------------------------------------------------- /service/service-user/conf/conf.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-user/conf/conf.go -------------------------------------------------------------------------------- /service/service-user/db/db.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-user/db/db.go -------------------------------------------------------------------------------- /service/service-user/db/user_mapper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-user/db/user_mapper.go -------------------------------------------------------------------------------- /service/service-user/handler/user_handler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-user/handler/user_handler.go -------------------------------------------------------------------------------- /service/service-user/handler/user_resposity.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-user/handler/user_resposity.go -------------------------------------------------------------------------------- /service/service-user/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-user/main.go -------------------------------------------------------------------------------- /service/service-user/orm/table2struct/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-user/orm/table2struct/main.go -------------------------------------------------------------------------------- /service/service-user/orm/table2struct/main_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-user/orm/table2struct/main_test.go -------------------------------------------------------------------------------- /service/service-user/orm/user.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-user/orm/user.go -------------------------------------------------------------------------------- /service/service-user/proto/user.micro.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-user/proto/user.micro.go -------------------------------------------------------------------------------- /service/service-user/proto/user.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-user/proto/user.pb.go -------------------------------------------------------------------------------- /service/service-user/proto/user.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-user/proto/user.proto -------------------------------------------------------------------------------- /service/service-user/vendor/github.com/go-log/log/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-user/vendor/github.com/go-log/log/LICENSE -------------------------------------------------------------------------------- /service/service-user/vendor/github.com/go-log/log/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-user/vendor/github.com/go-log/log/README.md -------------------------------------------------------------------------------- /service/service-user/vendor/github.com/go-log/log/log.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-user/vendor/github.com/go-log/log/log.go -------------------------------------------------------------------------------- /service/service-user/vendor/github.com/google/uuid/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-user/vendor/github.com/google/uuid/LICENSE -------------------------------------------------------------------------------- /service/service-user/vendor/github.com/google/uuid/dce.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-user/vendor/github.com/google/uuid/dce.go -------------------------------------------------------------------------------- /service/service-user/vendor/github.com/google/uuid/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-user/vendor/github.com/google/uuid/doc.go -------------------------------------------------------------------------------- /service/service-user/vendor/github.com/google/uuid/go.mod: -------------------------------------------------------------------------------- 1 | module github.com/google/uuid 2 | -------------------------------------------------------------------------------- /service/service-user/vendor/github.com/google/uuid/hash.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-user/vendor/github.com/google/uuid/hash.go -------------------------------------------------------------------------------- /service/service-user/vendor/github.com/google/uuid/node.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-user/vendor/github.com/google/uuid/node.go -------------------------------------------------------------------------------- /service/service-user/vendor/github.com/google/uuid/sql.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-user/vendor/github.com/google/uuid/sql.go -------------------------------------------------------------------------------- /service/service-user/vendor/github.com/google/uuid/time.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-user/vendor/github.com/google/uuid/time.go -------------------------------------------------------------------------------- /service/service-user/vendor/github.com/google/uuid/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-user/vendor/github.com/google/uuid/util.go -------------------------------------------------------------------------------- /service/service-user/vendor/github.com/google/uuid/uuid.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-user/vendor/github.com/google/uuid/uuid.go -------------------------------------------------------------------------------- /service/service-user/vendor/github.com/jinzhu/gorm/License: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-user/vendor/github.com/jinzhu/gorm/License -------------------------------------------------------------------------------- /service/service-user/vendor/github.com/jinzhu/gorm/field.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-user/vendor/github.com/jinzhu/gorm/field.go -------------------------------------------------------------------------------- /service/service-user/vendor/github.com/jinzhu/gorm/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-user/vendor/github.com/jinzhu/gorm/main.go -------------------------------------------------------------------------------- /service/service-user/vendor/github.com/jinzhu/gorm/model.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-user/vendor/github.com/jinzhu/gorm/model.go -------------------------------------------------------------------------------- /service/service-user/vendor/github.com/jinzhu/gorm/scope.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-user/vendor/github.com/jinzhu/gorm/scope.go -------------------------------------------------------------------------------- /service/service-user/vendor/github.com/jinzhu/gorm/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-user/vendor/github.com/jinzhu/gorm/utils.go -------------------------------------------------------------------------------- /service/service-user/vendor/github.com/konsorten/go-windows-terminal-sequences/go.mod: -------------------------------------------------------------------------------- 1 | module github.com/konsorten/go-windows-terminal-sequences 2 | -------------------------------------------------------------------------------- /service/service-user/vendor/github.com/micro/cli/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-user/vendor/github.com/micro/cli/LICENSE -------------------------------------------------------------------------------- /service/service-user/vendor/github.com/micro/cli/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-user/vendor/github.com/micro/cli/README.md -------------------------------------------------------------------------------- /service/service-user/vendor/github.com/micro/cli/app.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-user/vendor/github.com/micro/cli/app.go -------------------------------------------------------------------------------- /service/service-user/vendor/github.com/micro/cli/cli.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-user/vendor/github.com/micro/cli/cli.go -------------------------------------------------------------------------------- /service/service-user/vendor/github.com/micro/cli/command.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-user/vendor/github.com/micro/cli/command.go -------------------------------------------------------------------------------- /service/service-user/vendor/github.com/micro/cli/context.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-user/vendor/github.com/micro/cli/context.go -------------------------------------------------------------------------------- /service/service-user/vendor/github.com/micro/cli/flag.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-user/vendor/github.com/micro/cli/flag.go -------------------------------------------------------------------------------- /service/service-user/vendor/github.com/micro/cli/help.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-user/vendor/github.com/micro/cli/help.go -------------------------------------------------------------------------------- /service/service-user/vendor/github.com/micro/go-log/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-user/vendor/github.com/micro/go-log/LICENSE -------------------------------------------------------------------------------- /service/service-user/vendor/github.com/micro/go-log/log.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-user/vendor/github.com/micro/go-log/log.go -------------------------------------------------------------------------------- /service/service-user/vendor/github.com/micro/mdns/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-user/vendor/github.com/micro/mdns/LICENSE -------------------------------------------------------------------------------- /service/service-user/vendor/github.com/micro/mdns/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-user/vendor/github.com/micro/mdns/README.md -------------------------------------------------------------------------------- /service/service-user/vendor/github.com/micro/mdns/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-user/vendor/github.com/micro/mdns/client.go -------------------------------------------------------------------------------- /service/service-user/vendor/github.com/micro/mdns/dns_sd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-user/vendor/github.com/micro/mdns/dns_sd.go -------------------------------------------------------------------------------- /service/service-user/vendor/github.com/micro/mdns/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-user/vendor/github.com/micro/mdns/server.go -------------------------------------------------------------------------------- /service/service-user/vendor/github.com/micro/mdns/zone.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-user/vendor/github.com/micro/mdns/zone.go -------------------------------------------------------------------------------- /service/service-user/vendor/github.com/micro/util/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-user/vendor/github.com/micro/util/LICENSE -------------------------------------------------------------------------------- /service/service-user/vendor/github.com/miekg/dns/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-user/vendor/github.com/miekg/dns/AUTHORS -------------------------------------------------------------------------------- /service/service-user/vendor/github.com/miekg/dns/COPYRIGHT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-user/vendor/github.com/miekg/dns/COPYRIGHT -------------------------------------------------------------------------------- /service/service-user/vendor/github.com/miekg/dns/Gopkg.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-user/vendor/github.com/miekg/dns/Gopkg.lock -------------------------------------------------------------------------------- /service/service-user/vendor/github.com/miekg/dns/Gopkg.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-user/vendor/github.com/miekg/dns/Gopkg.toml -------------------------------------------------------------------------------- /service/service-user/vendor/github.com/miekg/dns/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-user/vendor/github.com/miekg/dns/LICENSE -------------------------------------------------------------------------------- /service/service-user/vendor/github.com/miekg/dns/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-user/vendor/github.com/miekg/dns/README.md -------------------------------------------------------------------------------- /service/service-user/vendor/github.com/miekg/dns/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-user/vendor/github.com/miekg/dns/client.go -------------------------------------------------------------------------------- /service/service-user/vendor/github.com/miekg/dns/dane.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-user/vendor/github.com/miekg/dns/dane.go -------------------------------------------------------------------------------- /service/service-user/vendor/github.com/miekg/dns/dns.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-user/vendor/github.com/miekg/dns/dns.go -------------------------------------------------------------------------------- /service/service-user/vendor/github.com/miekg/dns/dnssec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-user/vendor/github.com/miekg/dns/dnssec.go -------------------------------------------------------------------------------- /service/service-user/vendor/github.com/miekg/dns/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-user/vendor/github.com/miekg/dns/doc.go -------------------------------------------------------------------------------- /service/service-user/vendor/github.com/miekg/dns/edns.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-user/vendor/github.com/miekg/dns/edns.go -------------------------------------------------------------------------------- /service/service-user/vendor/github.com/miekg/dns/format.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-user/vendor/github.com/miekg/dns/format.go -------------------------------------------------------------------------------- /service/service-user/vendor/github.com/miekg/dns/fuzz.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-user/vendor/github.com/miekg/dns/fuzz.go -------------------------------------------------------------------------------- /service/service-user/vendor/github.com/miekg/dns/labels.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-user/vendor/github.com/miekg/dns/labels.go -------------------------------------------------------------------------------- /service/service-user/vendor/github.com/miekg/dns/msg.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-user/vendor/github.com/miekg/dns/msg.go -------------------------------------------------------------------------------- /service/service-user/vendor/github.com/miekg/dns/nsecx.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-user/vendor/github.com/miekg/dns/nsecx.go -------------------------------------------------------------------------------- /service/service-user/vendor/github.com/miekg/dns/rawmsg.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-user/vendor/github.com/miekg/dns/rawmsg.go -------------------------------------------------------------------------------- /service/service-user/vendor/github.com/miekg/dns/reverse.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-user/vendor/github.com/miekg/dns/reverse.go -------------------------------------------------------------------------------- /service/service-user/vendor/github.com/miekg/dns/scan.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-user/vendor/github.com/miekg/dns/scan.go -------------------------------------------------------------------------------- /service/service-user/vendor/github.com/miekg/dns/scan_rr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-user/vendor/github.com/miekg/dns/scan_rr.go -------------------------------------------------------------------------------- /service/service-user/vendor/github.com/miekg/dns/scanner.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-user/vendor/github.com/miekg/dns/scanner.go -------------------------------------------------------------------------------- /service/service-user/vendor/github.com/miekg/dns/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-user/vendor/github.com/miekg/dns/server.go -------------------------------------------------------------------------------- /service/service-user/vendor/github.com/miekg/dns/sig0.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-user/vendor/github.com/miekg/dns/sig0.go -------------------------------------------------------------------------------- /service/service-user/vendor/github.com/miekg/dns/smimea.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-user/vendor/github.com/miekg/dns/smimea.go -------------------------------------------------------------------------------- /service/service-user/vendor/github.com/miekg/dns/tlsa.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-user/vendor/github.com/miekg/dns/tlsa.go -------------------------------------------------------------------------------- /service/service-user/vendor/github.com/miekg/dns/tsig.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-user/vendor/github.com/miekg/dns/tsig.go -------------------------------------------------------------------------------- /service/service-user/vendor/github.com/miekg/dns/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-user/vendor/github.com/miekg/dns/types.go -------------------------------------------------------------------------------- /service/service-user/vendor/github.com/miekg/dns/udp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-user/vendor/github.com/miekg/dns/udp.go -------------------------------------------------------------------------------- /service/service-user/vendor/github.com/miekg/dns/update.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-user/vendor/github.com/miekg/dns/update.go -------------------------------------------------------------------------------- /service/service-user/vendor/github.com/miekg/dns/version.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-user/vendor/github.com/miekg/dns/version.go -------------------------------------------------------------------------------- /service/service-user/vendor/github.com/miekg/dns/xfr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-user/vendor/github.com/miekg/dns/xfr.go -------------------------------------------------------------------------------- /service/service-user/vendor/github.com/miekg/dns/zmsg.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-user/vendor/github.com/miekg/dns/zmsg.go -------------------------------------------------------------------------------- /service/service-user/vendor/github.com/miekg/dns/ztypes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-user/vendor/github.com/miekg/dns/ztypes.go -------------------------------------------------------------------------------- /service/service-user/vendor/github.com/mitchellh/hashstructure/go.mod: -------------------------------------------------------------------------------- 1 | module github.com/mitchellh/hashstructure 2 | -------------------------------------------------------------------------------- /service/service-user/vendor/github.com/mitchellh/mapstructure/go.mod: -------------------------------------------------------------------------------- 1 | module github.com/mitchellh/mapstructure 2 | -------------------------------------------------------------------------------- /service/service-user/vendor/github.com/pborman/uuid/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-user/vendor/github.com/pborman/uuid/LICENSE -------------------------------------------------------------------------------- /service/service-user/vendor/github.com/pborman/uuid/dce.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-user/vendor/github.com/pborman/uuid/dce.go -------------------------------------------------------------------------------- /service/service-user/vendor/github.com/pborman/uuid/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-user/vendor/github.com/pborman/uuid/doc.go -------------------------------------------------------------------------------- /service/service-user/vendor/github.com/pborman/uuid/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-user/vendor/github.com/pborman/uuid/go.mod -------------------------------------------------------------------------------- /service/service-user/vendor/github.com/pborman/uuid/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-user/vendor/github.com/pborman/uuid/go.sum -------------------------------------------------------------------------------- /service/service-user/vendor/github.com/pborman/uuid/hash.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-user/vendor/github.com/pborman/uuid/hash.go -------------------------------------------------------------------------------- /service/service-user/vendor/github.com/pborman/uuid/node.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-user/vendor/github.com/pborman/uuid/node.go -------------------------------------------------------------------------------- /service/service-user/vendor/github.com/pborman/uuid/sql.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-user/vendor/github.com/pborman/uuid/sql.go -------------------------------------------------------------------------------- /service/service-user/vendor/github.com/pborman/uuid/time.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-user/vendor/github.com/pborman/uuid/time.go -------------------------------------------------------------------------------- /service/service-user/vendor/github.com/pborman/uuid/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-user/vendor/github.com/pborman/uuid/util.go -------------------------------------------------------------------------------- /service/service-user/vendor/github.com/pborman/uuid/uuid.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-user/vendor/github.com/pborman/uuid/uuid.go -------------------------------------------------------------------------------- /service/service-user/vendor/github.com/pkg/errors/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-user/vendor/github.com/pkg/errors/LICENSE -------------------------------------------------------------------------------- /service/service-user/vendor/github.com/pkg/errors/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-user/vendor/github.com/pkg/errors/README.md -------------------------------------------------------------------------------- /service/service-user/vendor/github.com/pkg/errors/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-user/vendor/github.com/pkg/errors/errors.go -------------------------------------------------------------------------------- /service/service-user/vendor/github.com/pkg/errors/stack.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-user/vendor/github.com/pkg/errors/stack.go -------------------------------------------------------------------------------- /service/service-user/vendor/golang.org/x/crypto/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-user/vendor/golang.org/x/crypto/LICENSE -------------------------------------------------------------------------------- /service/service-user/vendor/golang.org/x/crypto/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-user/vendor/golang.org/x/crypto/PATENTS -------------------------------------------------------------------------------- /service/service-user/vendor/golang.org/x/net/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-user/vendor/golang.org/x/net/LICENSE -------------------------------------------------------------------------------- /service/service-user/vendor/golang.org/x/net/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-user/vendor/golang.org/x/net/PATENTS -------------------------------------------------------------------------------- /service/service-user/vendor/golang.org/x/net/bpf/asm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-user/vendor/golang.org/x/net/bpf/asm.go -------------------------------------------------------------------------------- /service/service-user/vendor/golang.org/x/net/bpf/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-user/vendor/golang.org/x/net/bpf/doc.go -------------------------------------------------------------------------------- /service/service-user/vendor/golang.org/x/net/bpf/setter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-user/vendor/golang.org/x/net/bpf/setter.go -------------------------------------------------------------------------------- /service/service-user/vendor/golang.org/x/net/bpf/vm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-user/vendor/golang.org/x/net/bpf/vm.go -------------------------------------------------------------------------------- /service/service-user/vendor/golang.org/x/net/ipv4/batch.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-user/vendor/golang.org/x/net/ipv4/batch.go -------------------------------------------------------------------------------- /service/service-user/vendor/golang.org/x/net/ipv4/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-user/vendor/golang.org/x/net/ipv4/doc.go -------------------------------------------------------------------------------- /service/service-user/vendor/golang.org/x/net/ipv4/gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-user/vendor/golang.org/x/net/ipv4/gen.go -------------------------------------------------------------------------------- /service/service-user/vendor/golang.org/x/net/ipv4/header.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-user/vendor/golang.org/x/net/ipv4/header.go -------------------------------------------------------------------------------- /service/service-user/vendor/golang.org/x/net/ipv4/helper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-user/vendor/golang.org/x/net/ipv4/helper.go -------------------------------------------------------------------------------- /service/service-user/vendor/golang.org/x/net/ipv4/iana.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-user/vendor/golang.org/x/net/ipv4/iana.go -------------------------------------------------------------------------------- /service/service-user/vendor/golang.org/x/net/ipv4/icmp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-user/vendor/golang.org/x/net/ipv4/icmp.go -------------------------------------------------------------------------------- /service/service-user/vendor/golang.org/x/net/ipv4/packet.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-user/vendor/golang.org/x/net/ipv4/packet.go -------------------------------------------------------------------------------- /service/service-user/vendor/golang.org/x/net/ipv6/batch.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-user/vendor/golang.org/x/net/ipv6/batch.go -------------------------------------------------------------------------------- /service/service-user/vendor/golang.org/x/net/ipv6/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-user/vendor/golang.org/x/net/ipv6/doc.go -------------------------------------------------------------------------------- /service/service-user/vendor/golang.org/x/net/ipv6/gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-user/vendor/golang.org/x/net/ipv6/gen.go -------------------------------------------------------------------------------- /service/service-user/vendor/golang.org/x/net/ipv6/header.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-user/vendor/golang.org/x/net/ipv6/header.go -------------------------------------------------------------------------------- /service/service-user/vendor/golang.org/x/net/ipv6/helper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-user/vendor/golang.org/x/net/ipv6/helper.go -------------------------------------------------------------------------------- /service/service-user/vendor/golang.org/x/net/ipv6/iana.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-user/vendor/golang.org/x/net/ipv6/iana.go -------------------------------------------------------------------------------- /service/service-user/vendor/golang.org/x/net/ipv6/icmp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-user/vendor/golang.org/x/net/ipv6/icmp.go -------------------------------------------------------------------------------- /service/service-user/vendor/golang.org/x/sys/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-user/vendor/golang.org/x/sys/LICENSE -------------------------------------------------------------------------------- /service/service-user/vendor/golang.org/x/sys/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-user/vendor/golang.org/x/sys/PATENTS -------------------------------------------------------------------------------- /service/service-user/vendor/golang.org/x/sys/unix/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-user/vendor/golang.org/x/sys/unix/README.md -------------------------------------------------------------------------------- /service/service-user/vendor/golang.org/x/sys/unix/dirent.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-user/vendor/golang.org/x/sys/unix/dirent.go -------------------------------------------------------------------------------- /service/service-user/vendor/golang.org/x/sys/unix/fcntl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-user/vendor/golang.org/x/sys/unix/fcntl.go -------------------------------------------------------------------------------- /service/service-user/vendor/golang.org/x/sys/unix/gccgo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-user/vendor/golang.org/x/sys/unix/gccgo.go -------------------------------------------------------------------------------- /service/service-user/vendor/golang.org/x/sys/unix/gccgo_c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-user/vendor/golang.org/x/sys/unix/gccgo_c.c -------------------------------------------------------------------------------- /service/service-user/vendor/golang.org/x/sys/unix/ioctl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-user/vendor/golang.org/x/sys/unix/ioctl.go -------------------------------------------------------------------------------- /service/service-user/vendor/golang.org/x/sys/unix/mkall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-user/vendor/golang.org/x/sys/unix/mkall.sh -------------------------------------------------------------------------------- /service/service-user/vendor/golang.org/x/sys/unix/mkpost.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-user/vendor/golang.org/x/sys/unix/mkpost.go -------------------------------------------------------------------------------- /service/service-user/vendor/golang.org/x/sys/unix/race.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-user/vendor/golang.org/x/sys/unix/race.go -------------------------------------------------------------------------------- /service/service-user/vendor/golang.org/x/sys/unix/race0.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-user/vendor/golang.org/x/sys/unix/race0.go -------------------------------------------------------------------------------- /service/service-user/vendor/golang.org/x/sys/unix/str.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-user/vendor/golang.org/x/sys/unix/str.go -------------------------------------------------------------------------------- /service/service-user/vendor/golang.org/x/sys/windows/str.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-user/vendor/golang.org/x/sys/windows/str.go -------------------------------------------------------------------------------- /service/service-user/vendor/vendor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitxx/bitesla/HEAD/service/service-user/vendor/vendor.json --------------------------------------------------------------------------------