diff options
Diffstat (limited to 'src/handlers/planets.rs')
-rw-r--r-- | src/handlers/planets.rs | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/src/handlers/planets.rs b/src/handlers/planets.rs new file mode 100644 index 0000000..e80e7fe --- /dev/null +++ b/src/handlers/planets.rs @@ -0,0 +1,18 @@ +use axum::{response::IntoResponse, Json}; + +use tracing::{error, instrument}; + +use solarlib::star::Star; +use solarlib::planet::Planet; + +use crate::errors::*; + +pub async fn list() -> JsonResult<Json<Vec<Planet>>> { + let con_url = std::env::var("QEMU_URL").unwrap_or("qemu:///system".to_string()); + let mut star = Star::new(con_url)?; + + let inhabitants = star.inhabitants()?; + + Ok(Json(inhabitants)) +} + |