blob: f8afe55421bf11d2c2295adedc267562458e5feb (
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<UiPage> {
todo!()
}
|