aboutsummaryrefslogtreecommitdiff
path: root/src/handlers/waifus.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/handlers/waifus.rs')
-rw-r--r--src/handlers/waifus.rs18
1 files changed, 0 insertions, 18 deletions
diff --git a/src/handlers/waifus.rs b/src/handlers/waifus.rs
deleted file mode 100644
index 117ba15..0000000
--- a/src/handlers/waifus.rs
+++ /dev/null
@@ -1,18 +0,0 @@
-use axum::{response::IntoResponse, Json};
-
-use tracing::{error, instrument};
-
-use waifulib::house::House;
-use waifulib::waifu::Waifu;
-
-use crate::errors::*;
-
-pub async fn list() -> JsonResult<Json<Vec<Waifu>>> {
- let con_url = std::env::var("QEMU_URL").unwrap_or("qemu:///system".to_string());
- let mut house: House = House::new(con_url)?;
-
- let inhabitants = house.inhabitants()?;
-
- Ok(Json(inhabitants))
-}
-