Skip to content

Latest commit

 

History

History
10 lines (10 loc) · 626 Bytes

README.md

File metadata and controls

10 lines (10 loc) · 626 Bytes

ANON_BOT

Simple Telegram bot written on Go, which allows to resend messages to desired chat anonymously. Bot uses webhooks to get updates and I suggest to host it on Heroku. In order to use this bot, constants should be changed to your values

const (       
    token = "<Here goes token of telegram bot>"
    id    = -0000000000 // Here goes ID of chat
    url   = "<Here goes URL of server>"
    )

Bot uses gb for resolving dependencies and requires gin and tgbotapi installed.