Adam Snaider | cc62281 | 2023-11-07 17:59:27 -0800 | [diff] [blame] | 1 | //! All of AOS into a single, easy to use library. |
| 2 | |
| 3 | pub use aos_configuration as configuration; |
| 4 | pub use aos_init as init; |
| 5 | pub use aos_uuid as uuid; |
| 6 | |
| 7 | pub use aos_flatbuffers as flatbuffers; |
| 8 | |
| 9 | /// The essentials for working with the AOS event loop. |
| 10 | pub mod events { |
| 11 | pub use aos_events_event_loop_runtime as event_loop_runtime; |
| 12 | pub use aos_events_shm_event_loop as shm_event_loop; |
| 13 | pub use aos_events_simulated_event_loop as simulated_event_loop; |
| 14 | } |