riot-api 0.1.2

A rust crate to interact with Riot Games Developer API
Documentation
1
2
3
4
5
6
7
8
use serde::{Deserialize, Serialize};

#[derive(Debug, Serialize)]
#[serde(rename_all = "camelCase")]
pub struct ProviderRegistrationParamsV5 {
    pub region: String,
    pub url: String,
}