diff options
author | Vika <vika@fireburn.ru> | 2024-08-20 01:45:55 +0300 |
---|---|---|
committer | Vika <vika@fireburn.ru> | 2024-08-20 01:46:13 +0300 |
commit | b96e44f3526a6da09b5fd09617802190fa8fc134 (patch) | |
tree | a74ea81378e1222862d30c2b5e56a39f14a6a706 /util/src | |
parent | d6a8525274ccd96a5ce9540ea2ba1e463c84ff90 (diff) | |
download | kittybox-b96e44f3526a6da09b5fd09617802190fa8fc134.tar.zst |
util: implement Debug on Config
Diffstat (limited to 'util/src')
-rw-r--r-- | util/src/micropub.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/util/src/micropub.rs b/util/src/micropub.rs index 1a3bcf3..ce9e2d7 100644 --- a/util/src/micropub.rs +++ b/util/src/micropub.rs @@ -46,7 +46,7 @@ fn default_q_list() -> Vec<QueryType> { vec![QueryType::Config] } /// ?q=config output of a Micropub endpoint. -#[derive(serde::Serialize, serde::Deserialize)] +#[derive(Serialize, Deserialize, Debug)] #[serde(rename_all = "kebab-case")] pub struct Config { /// Query types supported by this server. |