Skip to main content

roblox_api/api/hba_service/
v1.rs

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}