About 1755383711484 milliseconds have passed since midnight of the january the first in 1970. ------------------------------------------------------ pub fn r_wellknown_matrix_client() -> Cors<Value> { Cors(json!({"m.homeserver": {"base_url": "https://matrix.metamuffin.org"}} )) } #[get("/.well-known/matrix/server")] pub fn r_wellknown_matrix_server() -> Cors<Value> { Cors(json!({"m.server": "matrix.metamuffin.org:443"} )) } #[get("/.well-known/security.txt")] pub fn r_wellknown_security() -> &'static str { include_str!("../assets/security.txt.asc") } #[get("/.well-known/org.flathub.VerifiedApps.txt")] pub fn r_wellknown_flathub_verified() -> &'static str { "a29f43db-bd4e-40cb-b121-2899c4d70634\n" } ====================================== Contents of "source.rs" ====================================== use crate::layout::{DynScaffold, Scaffold}; use rocket::{ get, http::Header, response::{self, Responder}, Request, State,