Skip to content

Commit

Permalink
Fix sticker::set::Kind being private
Browse files Browse the repository at this point in the history
  • Loading branch information
snejugal committed Aug 27, 2019
1 parent 58caaf4 commit c5bea5a
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/types/sticker.rs
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@ use serde::de::{Deserialize, Deserializer, IgnoredAny, MapAccess, Visitor};
use std::fmt::{self, Formatter};

pub mod mask_position;
mod set;
pub mod set;

pub use {mask_position::MaskPosition, set::*};
pub use {mask_position::MaskPosition, set::Set};

/// Represents different kinds of a [`Sticker`].
///
Expand Down
2 changes: 2 additions & 0 deletions src/types/sticker/set.rs
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
//! Types related to sticker sets.
use super::Sticker;
use serde::de::{Deserialize, Deserializer, IgnoredAny, MapAccess, Visitor};
use std::fmt::{self, Formatter};
Expand Down

0 comments on commit c5bea5a

Please sign in to comment.