aboutsummaryrefslogtreecommitdiff
path: root/server/src/ui/stats.rs
blob: 387ca635b55e1295e8cce9bf8eb8ff36ee56bf64 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
/*
    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 <metamuffin.org>
*/
use crate::{request_info::RequestInfo, ui::error::MyResult};
use rocket::{get, response::content::RawHtml};

#[get("/stats")]
pub fn r_stats(ri: RequestInfo) -> MyResult<RawHtml<String>> {
    todo!()
}