Files
ew_author/src/router/location.rs
2026-07-24 14:40:12 -05:00

15 lines
285 B
Rust

use jzon::object;
use actix_web::{web, Responder};
use crate::router::Api;
pub fn routes(cfg: &mut web::ServiceConfig) {
cfg.route("/location", web::get().to(location));
}
async fn location() -> impl Responder {
Api(Some(object!{
"master_location_ids": []
}))
}