feat: add .gitignore with common patterns for Python projects, virtual environments, logs, and editor configurations.

This commit is contained in:
Marco Gallegos
2025-12-13 19:06:49 -06:00
parent 1cb382b4ef
commit 4653eda462
3 changed files with 120 additions and 1 deletions

View File

@@ -340,4 +340,11 @@ def main():
application.run_polling()
if __name__ == "__main__":
main()
main()
# ... todo el código del contrato ...
# Al final:
onboarding_handler = ConversationHandler(
entry_points=[CommandHandler("welcome", start)], # Cambiado a /welcome
states=states, # Tu diccionario de estados
fallbacks=[CommandHandler("cancelar", cancelar)]
)