diff options
| author | diogo464 <[email protected]> | 2025-06-27 10:00:05 +0100 |
|---|---|---|
| committer | diogo464 <[email protected]> | 2025-06-27 10:00:05 +0100 |
| commit | f2df4d168045c3f97d8c332df52d067470f947c1 (patch) | |
| tree | 0de1cb90251ad881e2eb153463180f1b578c1a22 /src | |
init
Diffstat (limited to 'src')
| -rw-r--r-- | src/main.rs | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/main.rs b/src/main.rs new file mode 100644 index 0000000..4c8949c --- /dev/null +++ b/src/main.rs | |||
| @@ -0,0 +1,10 @@ | |||
| 1 | use eyre::Result; | ||
| 2 | |||
| 3 | #[tokio::main] | ||
| 4 | async fn main() -> Result<()> { | ||
| 5 | color_eyre::install()?; | ||
| 6 | tracing_subscriber::fmt::init(); | ||
| 7 | tracing::info!("Hello, World!"); | ||
| 8 | |||
| 9 | Ok(()) | ||
| 10 | } | ||
