mirror of
https://github.com/asterinas/asterinas.git
synced 2025-06-18 20:16:42 +00:00
6 lines
93 B
Rust
6 lines
93 B
Rust
use std::error::Error;
|
|
|
|
fn main() -> Result<(), Box<dyn Error + Send + Sync>> {
|
|
Ok(())
|
|
}
|