lola 0.1.1

Lightning fast dependency management for Python 3.11
Documentation
1
2
3
4
5
6
7
use clap::Parser;
use lola::Cli;

fn main() {
    let args = Cli::parse();
    println!("{:?}", args);
}