1use crate::endpoint; 2 3pub const URL: &str = "https://apis.roblox.com/hba-service/v1"; 4 5endpoint! { 6 server_nonce() -> String { 7 GET "{URL}/getservernonce"; 8 } 9}