agesafetch 2.0.1

A tool for obtaining your firmware's embedded AGESA version on Linux.
Documentation
1
2
3
4
5
6
7
8
9
10
11
// SPDX-FileCopyrightText: Benedikt Vollmerhaus <benedikt@vollmerhaus.org>
// SPDX-License-Identifier: MIT
use std::env;
use std::process::ExitCode;

use agesafetch::run_cli;

fn main() -> ExitCode {
    let exit_code = run_cli(env::args_os().collect());
    ExitCode::from(exit_code as u8)
}