prustio 1.0.3

The Rust embedded project management.
1
2
3
4
5
6
7
8
9
10
11
12
use std::process::exit;

mod controller;
mod cpp_templates;
mod model;
mod ui;
mod utils;
mod wrapper;

fn main() {
    exit(controller::execute());
}