aocf 0.1.21

A crate and CLI helper tool for Advent of Code
Documentation
1
2
3
4
5
6
7
8
9
10
use clap::Parser;
use std::path::PathBuf;

#[derive(Parser, Debug)]
#[clap(about = "Advent of Code problem\n<https://github.com/nuxeh/aocf>")]
pub struct AocOpts {
    /// File to read as input
    pub input: Option<PathBuf>,
}