├── .github ├── CODEOWNERS └── workflows │ └── python-package.yml ├── .gitignore ├── LICENSE ├── README.md ├── bot.py ├── plugins ├── commands.py ├── inline.py └── private_non_reply.py ├── requirements.txt └── utils ├── http.py └── pastebin.py /.github/CODEOWNERS: -------------------------------------------------------------------------------- 1 | * @dashezup 2 | -------------------------------------------------------------------------------- /.github/workflows/python-package.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashezup/ezpastebot/HEAD/.github/workflows/python-package.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashezup/ezpastebot/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashezup/ezpastebot/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashezup/ezpastebot/HEAD/README.md -------------------------------------------------------------------------------- /bot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashezup/ezpastebot/HEAD/bot.py -------------------------------------------------------------------------------- /plugins/commands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashezup/ezpastebot/HEAD/plugins/commands.py -------------------------------------------------------------------------------- /plugins/inline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashezup/ezpastebot/HEAD/plugins/inline.py -------------------------------------------------------------------------------- /plugins/private_non_reply.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashezup/ezpastebot/HEAD/plugins/private_non_reply.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | Pyrogram 2 | TgCrypto 3 | aiohttp 4 | -------------------------------------------------------------------------------- /utils/http.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashezup/ezpastebot/HEAD/utils/http.py -------------------------------------------------------------------------------- /utils/pastebin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dashezup/ezpastebot/HEAD/utils/pastebin.py --------------------------------------------------------------------------------