/* 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 rocket::{get, response::Redirect}; #[get("/api")] pub fn r_api_root() -> Redirect { Redirect::moved("https://jellything.metamuffin.org/book/api.html#jellything-http-api") } #[get("/version")] pub fn r_version() -> &'static str { env!("CARGO_PKG_VERSION") } // #[get("/translations")] // pub fn r_translations( // lang: AcceptLanguage, // aj: AcceptJson, // ) -> Either>, String> { // let AcceptLanguage(lang) = lang; // let table = get_translation_table(&lang); // if *aj { // Either::Left(Json(table)) // } else { // let mut s = String::new(); // for (k, v) in table { // s += k; // s += "="; // s += v; // s += "\n"; // } // Either::Right(s) // } // }