TemplateID::new now returns Result<T, TemplateNotFoundError> Cleanup code in some of new handlers
11 lines
237 B
Rust
11 lines
237 B
Rust
use serde::Deserialize;
|
|
|
|
template_id!(UnlockConfig id);
|
|
|
|
#[derive(Deserialize, Debug)]
|
|
#[serde(rename_all = "PascalCase")]
|
|
pub struct UnlockConfigTemplate {
|
|
#[serde(rename = "ID")]
|
|
pub id: UnlockConfigID,
|
|
pub name: String,
|
|
}
|