mango_rt/
application.rs

1/// Trait for defining mango Application
2///
3pub trait Application
4{
5  /// Start the execution of the application
6  fn start(&mut self);
7}