krata/hypha/bin/container.rs

8 lines
91 B
Rust
Raw Normal View History

2024-01-17 16:18:12 +00:00
use hypha::error::Result;
fn main() -> Result<()> {
2024-01-17 22:29:05 +00:00
env_logger::init();
2024-01-17 16:18:12 +00:00
Ok(())
}