scaffold: flake, cargo init, matrix-sdk 0.14 + tokio

This commit is contained in:
Damocles 2026-04-29 20:45:02 +02:00
parent 09e8a3c012
commit 44c9503f86
5 changed files with 4840 additions and 0 deletions

11
src/main.rs Normal file
View file

@ -0,0 +1,11 @@
use tracing_subscriber::EnvFilter;
#[tokio::main]
async fn main() {
tracing_subscriber::fmt()
.with_env_filter(EnvFilter::from_default_env())
.init();
tracing::info!("damocles-daemon starting");
tracing::info!("the cage has a door now");
}