transport: some standalone functioning

This commit is contained in:
🪞👃🪞 2024-08-10 12:06:20 +03:00
parent 430c51e305
commit b6da43e93e
7 changed files with 179 additions and 150 deletions

View file

@ -0,0 +1,6 @@
include!("lib.rs");
/// Application entrypoint.
pub fn main () -> Usually<()> {
run(TransportToolbar::standalone()?)?;
Ok(())
}