// Copyright (C) 2021 Leandro Lisboa Penz <lpenz@lpenz.org>
// This file is subject to the terms and conditions defined in
// file 'LICENSE', which is part of this source code package.
useanyhow::Result;useclap::Parser;#[derive(Parser, Debug)]#[command(author, version, about, long_about = None)]pubstructArgs{}fnmain()->Result<()>{Args::parse();ghaction_version_gen::main()}