From c338bd0b68774c951fd6961be22a4b47c850fbcb Mon Sep 17 00:00:00 2001 From: Daniele Tricoli Date: Tue, 8 Mar 2022 02:51:02 +0100 Subject: [PATCH] Add TELEGRAM_CHAT_ID const field --- cmd/run.go | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/cmd/run.go b/cmd/run.go index c10d7e2..1697bfd 100644 --- a/cmd/run.go +++ b/cmd/run.go @@ -17,12 +17,13 @@ import ( ) const ( - TELEGRAM_DEBUG = "TELEGRAM_DEBUG" - TELEGRAM_BOT_TOKEN = "TELEGRAM_BOT_TOKEN" - MASTODON_SERVER_ADDRESS = "MASTODON_SERVER_ADDRESS" MASTODON_ACCESS_TOKEN = "MASTODON_ACCESS_TOKEN" - MASTODON_TOOT_VISIBILITY = "MASTODON_TOOT_VISIBILITY" + MASTODON_SERVER_ADDRESS = "MASTODON_SERVER_ADDRESS" MASTODON_TOOT_MAX_CHARACTERS = "MASTODON_TOOT_MAX_CHARACTERS" + MASTODON_TOOT_VISIBILITY = "MASTODON_TOOT_VISIBILITY" + TELEGRAM_BOT_TOKEN = "TELEGRAM_BOT_TOKEN" + TELEGRAM_CHAT_ID = "TELEGRAM_CHAT_ID" + TELEGRAM_DEBUG = "TELEGRAM_DEBUG" ) // runCmd represents the run command