Skip to main content

crap4rust/
lib.rs

1// Copyright 2025 Umberto Gotti <umberto.gotti@umbertogotti.dev>
2// Licensed under the MIT License or Apache License, Version 2.0
3// SPDX-License-Identifier: MIT OR Apache-2.0
4
5mod app;
6mod cli;
7mod coverage;
8mod manifest;
9mod model;
10mod report;
11mod source;
12
13use std::process::ExitCode;
14
15use anyhow::Result;
16
17pub fn run() -> Result<ExitCode> {
18    let args = cli::Args::parse_args();
19    app::run(args)
20}