16 lines
193 B
Rust
16 lines
193 B
Rust
mod app;
|
|
mod processing;
|
|
mod settings;
|
|
mod step_indicator;
|
|
mod steps;
|
|
mod tutorial;
|
|
mod welcome;
|
|
mod wizard;
|
|
|
|
use gtk::prelude::*;
|
|
|
|
fn main() {
|
|
let app = app::build_app();
|
|
app.run();
|
|
}
|