dashboard for your PDS
at main 283 B view raw
1use std::sync::Arc; 2 3use axum::{ 4 extract::State, 5 response::{Html, IntoResponse}, 6}; 7use fun_html::elt::text; 8 9use crate::{state::AppState, templates::document}; 10 11pub async fn handle(state: State<Arc<AppState>>) -> impl IntoResponse { 12 Html(document::tmpl(text("meow"))) 13}