/* This file is part of jellything (https://codeberg.org/metamuffin/jellything) which is licensed under the GNU Affero General Public License (version 3); see /COPYING. Copyright (C) 2026 metamuffin */ use crate::{request_info::RequestInfo, ui::error::MyResult}; use rocket::{get, response::content::RawHtml}; #[get("/stats")] pub fn r_stats(ri: RequestInfo) -> MyResult> { todo!() }