lenso-cli 0.1.9

Lenso command-line interface for scaffolding and operating Lenso backend projects.
1
2
3
4
5
6
7
#[tokio::main]
async fn main() -> anyhow::Result<()> {
    lenso::host::run_api_with_embedded_worker_from_env_with_composition(
        lenso_starter_host::host_composition(),
    )
    .await
}