dbcfcfa109
* More warning fixes * Should be the last of the warning fixes * Code cleanup * Code formatting
11 lines
214 B
Rust
11 lines
214 B
Rust
use std::default::Default;
|
|
|
|
use serde::{Deserialize, Serialize};
|
|
|
|
#[derive(Clone, Debug, Default, Deserialize, Serialize)]
|
|
pub struct Api {
|
|
pub url: String,
|
|
pub endpoint: String,
|
|
pub version: String,
|
|
}
|