1 2 3 4 5 6 7 8 9
use anyhow::Result; use clap::command; use maelstrom_pytest::TestRunner; use maelstrom_util::process::ExitCode; use std::env; pub fn main() -> Result<ExitCode> { maelstrom_test_runner::main::<TestRunner>(command!(), env::args()) }