mirror of
https://github.com/Grasscutters/Cultivation.git
synced 2025-12-15 00:24:45 +01:00
9 lines
129 B
Rust
9 lines
129 B
Rust
#![allow(non_snake_case)]
|
|
|
|
use serde::Deserialize;
|
|
|
|
#[derive(Deserialize)]
|
|
pub(crate) struct APIQuery {
|
|
pub bg_file: String,
|
|
}
|