lumer 0.1.4

Lumer is a tool for managing Lumi projects
Documentation
1
2
3
4
5
6
7
8
use lumer::run;
use miette::Result;
use std::process::ExitCode;

#[tokio::main]
async fn main() -> Result<ExitCode> {
    run().await
}