mirror of
https://github.com/edera-dev/krata.git
synced 2025-08-02 12:50:54 +00:00
12 lines
251 B
Rust
12 lines
251 B
Rust
use std::env;
|
|
use anyhow::Result;
|
|
use hypha::container::init::ContainerInit;
|
|
|
|
fn main() -> Result<()> {
|
|
env::set_var("RUST_BACKTRACE", "1");
|
|
env_logger::init();
|
|
let mut container = ContainerInit::new();
|
|
container.init()?;
|
|
Ok(())
|
|
}
|