From bb518e62599607ac3b6a5f4d60f60c73e2083e10 Mon Sep 17 00:00:00 2001 From: Giulio De Pasquale Date: Wed, 13 Jan 2021 09:03:24 +0000 Subject: [PATCH] attached managers (no implementation) --- rustybot/src/main.rs | 1 + rustybot/src/managers.rs | 5 +++++ 2 files changed, 6 insertions(+) create mode 100644 rustybot/src/managers.rs diff --git a/rustybot/src/main.rs b/rustybot/src/main.rs index 501ccae..dea442d 100644 --- a/rustybot/src/main.rs +++ b/rustybot/src/main.rs @@ -11,6 +11,7 @@ mod bot; mod connectors; mod currency; mod events; +mod managers; mod models; mod pairs; mod strategy; diff --git a/rustybot/src/managers.rs b/rustybot/src/managers.rs new file mode 100644 index 0000000..11e5758 --- /dev/null +++ b/rustybot/src/managers.rs @@ -0,0 +1,5 @@ +struct EventManager {} + +struct PositionManager {} + +struct OrderManager {}