/* 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) 2025 metamuffin */ use crate::NodeID; pub fn u_home() -> String { "/home".to_owned() } pub fn u_node_id(node: NodeID) -> String { format!("/n/{}", node) } pub fn u_node_slug(node: &str) -> String { format!("/n/{}", node) }