chore(release): v2.0.4
All checks were successful
CI / lint-and-test (push) Successful in 1m2s
Docker Build and Release / build-and-push (push) Successful in 49s
Docker Build and Release / release (push) Successful in 9s

Made-with: Cursor
This commit is contained in:
2026-03-04 18:39:37 +03:00
parent 8ad8dffd0a
commit 13aba85e28
3 changed files with 8 additions and 8 deletions

View File

@@ -104,12 +104,7 @@ def main() -> None:
require_bot_token()
# Optional: set bot menu button to open the Miniapp. Uncomment to enable:
# _set_default_menu_button_webapp()
app = (
ApplicationBuilder()
.token(config.BOT_TOKEN)
.post_init(_post_init)
.build()
)
app = ApplicationBuilder().token(config.BOT_TOKEN).post_init(_post_init).build()
register_handlers(app)
from duty_teller.api.app import app as web_app