feat(tiktok): add tiktok handler

This commit is contained in:
2025-10-27 10:59:49 +02:00
parent 881d730483
commit 24bfeb4efc
5 changed files with 81 additions and 1 deletions

View File

@@ -32,6 +32,8 @@ async fn main() -> color_eyre::Result<()> {
Arc::new(tg_relay_rs::handlers::InstagramHandler),
#[cfg(feature = "youtube")]
Arc::new(tg_relay_rs::handlers::YouTubeShortsHandler),
#[cfg(feature = "tiktok")]
Arc::new(tg_relay_rs::handlers::TiktokHandler),
];
teloxide::repl(bot.clone(), move |bot: Bot, msg: Message| {