mirror of
https://github.com/nullishamy/ferri.git
synced 2025-07-15 16:44:18 +00:00
12 lines
223 B
Rust
12 lines
223 B
Rust
|
use serde::{Deserialize, Serialize};
|
||
|
|
||
|
#[derive(Serialize, Deserialize, Debug)]
|
||
|
pub struct ServerConfig {
|
||
|
pub host: String,
|
||
|
}
|
||
|
|
||
|
#[derive(Serialize, Deserialize, Debug)]
|
||
|
pub struct Config {
|
||
|
pub server: ServerConfig,
|
||
|
}
|