Initial commit

This commit is contained in:
2024-07-25 02:14:58 +03:00
commit 50ad50d61f
5 changed files with 49 additions and 0 deletions
+1
View File
@@ -0,0 +1 @@
.idea/
+3
View File
@@ -0,0 +1,3 @@
# anon3anon
Telegram bot for anonymous questions.
+38
View File
@@ -0,0 +1,38 @@
package main
import (
"log"
"os"
tgbotapi "github.com/go-telegram-bot-api/telegram-bot-api/v5"
)
const telegramBotTokenEnvKey = "TELEGRAM_BOT_TOKEN"
func main() {
token := os.Getenv(telegramBotTokenEnvKey)
bot, err := tgbotapi.NewBotAPI(token)
if err != nil {
log.Panic(err)
}
bot.Debug = true
log.Printf("Authorized on account %s", bot.Self.UserName)
u := tgbotapi.NewUpdate(0)
u.Timeout = 60
updates := bot.GetUpdatesChan(u)
for update := range updates {
if update.Message != nil { // If we got a message
log.Printf("[%s] %s", update.Message.From.UserName, update.Message.Text)
msg := tgbotapi.NewMessage(update.Message.Chat.ID, update.Message.Text)
msg.ReplyToMessageID = update.Message.MessageID
bot.Send(msg)
}
}
}
+5
View File
@@ -0,0 +1,5 @@
module github.com/nightnoryu/anon3anon
go 1.22.5
require github.com/go-telegram-bot-api/telegram-bot-api/v5 v5.5.1 // indirect
+2
View File
@@ -0,0 +1,2 @@
github.com/go-telegram-bot-api/telegram-bot-api/v5 v5.5.1 h1:wG8n/XJQ07TmjbITcGiUaOtXxdrINDz1b0J1w0SzqDc=
github.com/go-telegram-bot-api/telegram-bot-api/v5 v5.5.1/go.mod h1:A2S0CWkNylc2phvKXWBBdD3K0iGnDBGbzRpISP2zBl8=