use newport::engine::{ Builder, Module, }; // First thing first is to define our module struct struct HelloWorld; // Implement the module trait impl Module for HelloWorld { fn new() -> Self { Self } } // Start the app runner fn main() { Builder::new() .module::() .name("Hello World") .run() }