aoc 0.6.1

Advent of code helpers
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#[macro_use]
extern crate serde_derive;

pub use aoc_codegen::aoc;

pub use self::client::Client;
pub use self::leaderboard::Leaderboard;

pub mod cli;
pub mod client;
pub mod config;
pub mod leaderboard;
pub mod util;

pub type Result<T> = anyhow::Result<T>;