core/rustybot/src/main.rs

13 lines
185 B
Rust
Raw Normal View History

2021-01-02 12:15:19 +00:00
mod ticker;
mod positions;
mod events;
mod pairs;
2021-01-01 14:07:16 +00:00
pub type BoxError = Box<dyn std::error::Error + Send + Sync>;
#[tokio::main]
async fn main() -> Result<(), BoxError> {
Ok(())
}