botx_api/api/v3/stickers/
mod.rs

1pub mod models;
2
3#[cfg(feature = "stickers-new_sticker_pack")]
4pub mod new_sticker_pack;
5#[cfg(feature = "stickers-sticker_packs_list")]
6pub mod sticker_packs_list;
7#[cfg(feature = "stickers-add_sticker")]
8pub mod add_sticker;
9#[cfg(feature = "stickers-get_sticker_pack")]
10pub mod get_sticker_pack;
11#[cfg(feature = "stickers-get_sticker")]
12pub mod get_sticker;
13#[cfg(feature = "stickers-update_sticker_pack")]
14pub mod update_sticker_pack;
15#[cfg(feature = "stickers-delete_sticker")]
16pub mod delete_sticker;
17#[cfg(feature = "stickers-delete_sticker_pack")]
18pub mod delete_sticker_pack;