account/src/conntest.rs
2025-02-23 19:33:55 +01:00

7 lines
No EOL
165 B
Rust

use rocket::get;
use rocket::response::content::RawHtml;
#[get("/")]
pub fn conntest() -> RawHtml<&'static str>{
RawHtml(include_str!("../res/conntest.html"))
}