├── CODE_OF_CONDUCT.md ├── LICENSE ├── Procfile ├── README.md ├── app.json ├── captions └── captions.go ├── commands ├── help.go └── start.go ├── functions └── functions.go ├── go.mod ├── go.sum └── main.go /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandpsdev/ForwardTagRemoverBot/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandpsdev/ForwardTagRemoverBot/HEAD/LICENSE -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- 1 | worker: ./bin/ForwardTagRemoverBot -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandpsdev/ForwardTagRemoverBot/HEAD/README.md -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandpsdev/ForwardTagRemoverBot/HEAD/app.json -------------------------------------------------------------------------------- /captions/captions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandpsdev/ForwardTagRemoverBot/HEAD/captions/captions.go -------------------------------------------------------------------------------- /commands/help.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandpsdev/ForwardTagRemoverBot/HEAD/commands/help.go -------------------------------------------------------------------------------- /commands/start.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandpsdev/ForwardTagRemoverBot/HEAD/commands/start.go -------------------------------------------------------------------------------- /functions/functions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandpsdev/ForwardTagRemoverBot/HEAD/functions/functions.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandpsdev/ForwardTagRemoverBot/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandpsdev/ForwardTagRemoverBot/HEAD/go.sum -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandpsdev/ForwardTagRemoverBot/HEAD/main.go --------------------------------------------------------------------------------