14 lines
453 B
Rust
14 lines
453 B
Rust
use system_updater::*;
|
|
|
|
fn main() {
|
|
let opt = Opt {
|
|
// + One config file?
|
|
// + A config subFolder and execute in alphabetical order?
|
|
// - A master config file that list the sub/real files? no if it mean parsing 2 differents formats
|
|
//
|
|
// Hardcoded for now
|
|
config_file: "examples/openSUSE.yml".into(), // Default to something like -> "~/.config/system-updater/list.yml".into(),
|
|
};
|
|
run(&opt);
|
|
}
|