smart-house-web: в работе

This commit is contained in:
2 changed files with 7 additions and 0 deletions

View File

@@ -10,3 +10,6 @@ tokio = { version = "1.52", features = ["rt", "rt-multi-thread", "signal", "time
axum = "0.8"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
[dev-dependencies]
hyper = "1.9.0"

View File

@@ -0,0 +1,4 @@
#[tokio::test(flavor = "current_thread")]
async fn smoke() {
println!("Hello test!")
}