godlint-cli 0.5.0

Command-line interface for Godlint.
1
2
3
4
5
6
7
fn example() -> Result<u32, Error> {
    let first = one()?;
    let second = two()?;
    let third = three()?;

    Ok(first + second + third)
}