| 24 | #[derive(Debug, Clone, Default, Deserialize, Serialize)] |
| 25 | #[serde(rename_all = "kebab-case")] |
| 26 | pub struct AuthConfig { |
| 27 | pub token: Option<String>, |
| 28 | } |
| 29 | |
| 30 | impl AuthConfig { |
| 31 | fn is_empty(&self) -> bool { |
nothing calls this directly
no outgoing calls
no test coverage detected