This commit is contained in:
2026-03-14 01:18:24 +01:00
commit 0000662c6e
2 changed files with 12 additions and 0 deletions

1
.env Normal file
View File

@@ -0,0 +1 @@
API_KEY = 8438017196:AAFNokgHwhn4G-0HuCxc7ZVwf7SJP1ETXpc

11
main.py Normal file
View File

@@ -0,0 +1,11 @@
import os
import telebot
API_KEY = os.getenv('API_KEY')
bot = telebot.Telebot(API_KEY)
@bot.message_handler(command=['heckingemmy'])
def greet(message):
bot.reply_to(message, "Heckingemmy taky pojde, ten hajzl ten zmrd")
bot.polling()