Read bot token from config

This commit is contained in:
Izzy Swart 2021-07-05 19:14:37 -07:00
parent 9bb93a8a51
commit c51beb2bda
1 changed files with 1 additions and 3 deletions

View File

@ -66,9 +66,7 @@ async fn main() -> Result<(), Box<dyn Error>> {
let mastodon = registration.create_access_token(token)?;
let publisher = MastodonPublisher::new(mastodon);
let api = Arc::new(Api::new(
std::env::var("TELEGRAM_BOT_KEY").expect("bot key not present"),
));
let api = Arc::new(Api::new(cfg.bot_token.clone()));
let chat = get_chat_ref(api.clone(), None)
.await