1 2 3 4 5 6 7
use std::error::Error; mod generation; mod ui; fn main() -> Result<(), Box<dyn Error>> { generation::init() }