pub use hs_hackathon_macros::main;
pub mod prelude {
pub use crate::car::*;
pub use crate::drone::*;
pub use crate::vision::*;
pub use eyre;
pub use futures;
pub use futures::StreamExt;
pub use tokio;
pub use tracing;
pub use tracing_subscriber;
}
pub mod drone {
pub use hs_hackathon_drone::*;
}
pub mod car {
pub use hs_hackathon_car::{Angle, MotorSocket, Velocity, WheelOrientation};
}
pub mod vision {
pub use hs_hackathon_vision::{detect, distance, BoundingBox, Color, Led, LedDetectionConfig};
}