aethermap-gui 1.4.3

GUI client for aethermap input remapper
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! Aethermap GUI Application
//!
//! Main entry point for the Aethermap GUI application.

use aethermap_gui::State;
use iced::Application;

fn main() -> iced::Result {
    tracing_subscriber::fmt::init();
    
    State::run(iced::Settings::default())
}