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