]> git.puffer.fish Git - matthieu/nova.git/commit
base for the new gateway implementation
authorMatthieu <matthieu@developershouse.xyz>
Tue, 7 Sep 2021 14:30:24 +0000 (18:30 +0400)
committerMatthieu <matthieu@developershouse.xyz>
Tue, 7 Sep 2021 14:30:24 +0000 (18:30 +0400)
commit5846af709a8214b2cfacb00bbeb631d394131072
tree2d1863021c11d015fe837258d783dbdfcdb1bdf1
parent0cf197e36f953a31858f64ac1f247084e7ccb065
base for the new gateway implementation
25 files changed:
gateway/BUILD [new file with mode: 0644]
gateway/BUILD.bazel [deleted file]
gateway/Cargo.toml [new file with mode: 0644]
gateway/cargo/BUILD.bazel [new file with mode: 0644]
gateway/lib/BUILD.bazel [deleted file]
gateway/lib/gateway/BUILD.bazel [deleted file]
gateway/lib/gateway/compression/BUILD.bazel [deleted file]
gateway/lib/gateway/compression/json-zlib.go [deleted file]
gateway/lib/gateway/gateway.go [deleted file]
gateway/lib/gateway/options.go [deleted file]
gateway/lib/gateway/transporters/BUILD.bazel [deleted file]
gateway/lib/gateway/transporters/rabbitmq.go [deleted file]
gateway/main.go [deleted file]
gateway/src/client/connexion.rs [new file with mode: 0644]
gateway/src/client/error.rs [new file with mode: 0644]
gateway/src/client/mod.rs [new file with mode: 0644]
gateway/src/client/payloads/message.rs [new file with mode: 0644]
gateway/src/client/payloads/mod.rs [new file with mode: 0644]
gateway/src/client/payloads/payloads.rs [new file with mode: 0644]
gateway/src/client/shard.rs [new file with mode: 0644]
gateway/src/client/state.rs [new file with mode: 0644]
gateway/src/client/traits/message_handler.rs [new file with mode: 0644]
gateway/src/client/traits/mod.rs [new file with mode: 0644]
gateway/src/client/utils.rs [new file with mode: 0644]
gateway/src/main.rs [new file with mode: 0644]