Added missing Debug derive for config module
This commit is contained in:
parent
966847f788
commit
69aedda7a1
1 changed files with 1 additions and 1 deletions
|
@ -2,7 +2,7 @@ use std::{error::Error};
|
|||
use serde_derive::{Deserialize, Serialize};
|
||||
use crate::config::PostBody::Description;
|
||||
|
||||
#[derive(Serialize, Deserialize, Clone)]
|
||||
#[derive(Serialize, Deserialize, Clone, Debug)]
|
||||
pub(crate) struct Config {
|
||||
pub(crate) instance: String,
|
||||
pub(crate) status_post_url: Option<String>,
|
||||
|
|
Loading…
Reference in a new issue