melvin_ob/flight_control/mod.rs
1//! This module provides core components and functionality for the flight system,
2//! including the flight computer, flight state management, orbit calculations,
3//! and supervision logic.
4
5mod flight_computer;
6mod flight_state;
7pub(crate) mod orbit;
8mod supervisor;
9
10pub use flight_computer::FlightComputer;
11pub use flight_state::FlightState;
12pub use supervisor::Supervisor;