not-decky-store/src/not_decky/index.rs

7 lines
145 B
Rust
Raw Normal View History

2022-12-08 02:30:10 +00:00
use actix_web::{get, HttpResponse, Responder};
#[get("/")]
pub async fn decky_index() -> impl Responder {
HttpResponse::Ok().body("TODO")
}