Skip to content

Commit

Permalink
fix warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
ka-de committed Nov 25, 2024
1 parent 341a32d commit ab3ec66
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/config.rs
Original file line number Diff line number Diff line change
Expand Up @@ -12,21 +12,21 @@ pub struct Config {
}

#[derive(Deserialize)]
struct TwitterConfig {
pub struct TwitterConfig {
consumer_key: String,
consumer_secret: String,
access_token: String,
access_token_secret: String,
}

#[derive(Deserialize)]
struct MastodonConfig {
pub struct MastodonConfig {
access_token: String,
instance_url: String,
}

#[derive(Deserialize)]
struct BlueskyConfig {
pub struct BlueskyConfig {
identifier: String,
password: String,
instance_url: String,
Expand Down

0 comments on commit ab3ec66

Please sign in to comment.