scaffold: flake, cargo init, matrix-sdk 0.14 + tokio
This commit is contained in:
parent
09e8a3c012
commit
44c9503f86
5 changed files with 4840 additions and 0 deletions
11
src/main.rs
Normal file
11
src/main.rs
Normal 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");
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue