use axum::{routing::get, Json, Router};

pub fn router() -> Router {
    Router::new().route("/clicked", get(clicked_test))
}

async fn clicked_test() -> Json<&'static [&'static str]> {
    Json(&["just", "kidding!", "haha", "got ya!"])
}