lenso-cli 0.1.13

Lenso command-line interface for scaffolding and operating Lenso backend projects.
1
2
3
4
5
6
7
8
9
10
11
12
mod modules;

use lenso::host::prelude::*;

/// Host-owned module composition for this application.
///
/// Add project modules here with `HostBuilder::linked_module(...)`.
pub fn host_composition() -> HostComposition {
    HostBuilder::new()
        .linked_module(modules::app::linked_module())
        .build()
}