├── LICENSE ├── Procfile ├── README.md ├── app.json ├── bot.py ├── image ├── edit_1.py ├── edit_2.py ├── edit_3.py ├── edit_4.py └── edit_5.py ├── plugins ├── cbb.py ├── commands.py └── photo.py ├── requirements.txt ├── runtime.txt ├── sample_config.py └── script.py /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TroJanzHEX/Image-Editor/HEAD/LICENSE -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- 1 | worker: python3 bot.py 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TroJanzHEX/Image-Editor/HEAD/README.md -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TroJanzHEX/Image-Editor/HEAD/app.json -------------------------------------------------------------------------------- /bot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TroJanzHEX/Image-Editor/HEAD/bot.py -------------------------------------------------------------------------------- /image/edit_1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TroJanzHEX/Image-Editor/HEAD/image/edit_1.py -------------------------------------------------------------------------------- /image/edit_2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TroJanzHEX/Image-Editor/HEAD/image/edit_2.py -------------------------------------------------------------------------------- /image/edit_3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TroJanzHEX/Image-Editor/HEAD/image/edit_3.py -------------------------------------------------------------------------------- /image/edit_4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TroJanzHEX/Image-Editor/HEAD/image/edit_4.py -------------------------------------------------------------------------------- /image/edit_5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TroJanzHEX/Image-Editor/HEAD/image/edit_5.py -------------------------------------------------------------------------------- /plugins/cbb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TroJanzHEX/Image-Editor/HEAD/plugins/cbb.py -------------------------------------------------------------------------------- /plugins/commands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TroJanzHEX/Image-Editor/HEAD/plugins/commands.py -------------------------------------------------------------------------------- /plugins/photo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TroJanzHEX/Image-Editor/HEAD/plugins/photo.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TroJanzHEX/Image-Editor/HEAD/requirements.txt -------------------------------------------------------------------------------- /runtime.txt: -------------------------------------------------------------------------------- 1 | python-3.9.1 2 | -------------------------------------------------------------------------------- /sample_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TroJanzHEX/Image-Editor/HEAD/sample_config.py -------------------------------------------------------------------------------- /script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TroJanzHEX/Image-Editor/HEAD/script.py --------------------------------------------------------------------------------