1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
#![warn(clippy::all)]

#[macro_use]
extern crate strum;

pub mod abs_path;
pub mod console;
mod macros;
pub mod model;
pub mod web;

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