8 lines
192 B
Rust
8 lines
192 B
Rust
use actix_web::HttpResponse;
|
|
|
|
pub async fn unsecure_home() -> HttpResponse {
|
|
HttpResponse::Ok()
|
|
.content_type("text/plain")
|
|
.body("SolarEnergy unsecure central backend")
|
|
}
|