epoch-cli 1.0.2

A small command line utility for working with epoch timestamps.
Documentation
1
2
3
4
5
6
7
8
mod cli;

use clap::Parser;
use epoch_cli::errors::Result;

fn main() -> Result<()> {
    cli::run(cli::Cli::parse())
}