11 lines
176 B
Rust
11 lines
176 B
Rust
|
#[derive(Clone, PartialEq)]
|
||
|
pub struct State {
|
||
|
auth_token: Option<String>,
|
||
|
}
|
||
|
|
||
|
impl Default for State {
|
||
|
fn default() -> Self {
|
||
|
Self { auth_token: None }
|
||
|
}
|
||
|
}
|