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 {}