mirror of
https://git.ethanthesleepy.one/ethanaobrien/ew.git
synced 2025-05-13 11:37:33 -05:00
8 lines
181 B
Rust
8 lines
181 B
Rust
use json::{object, JsonValue};
|
|
use actix_web::{HttpRequest};
|
|
|
|
pub fn location(_req: HttpRequest) -> Option<JsonValue> {
|
|
Some(object!{
|
|
"master_location_ids": []
|
|
})
|
|
}
|