aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authordiogo464 <[email protected]>2025-06-27 10:00:05 +0100
committerdiogo464 <[email protected]>2025-06-27 10:00:05 +0100
commitf2df4d168045c3f97d8c332df52d067470f947c1 (patch)
tree0de1cb90251ad881e2eb153463180f1b578c1a22 /src
init
Diffstat (limited to 'src')
-rw-r--r--src/main.rs10
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 @@
1use eyre::Result;
2
3#[tokio::main]
4async fn main() -> Result<()> {
5 color_eyre::install()?;
6 tracing_subscriber::fmt::init();
7 tracing::info!("Hello, World!");
8
9 Ok(())
10}