├── .gitignore ├── Dockerfile ├── LICENSE ├── Procfile ├── README.md ├── app.json ├── bot ├── __init__.py ├── __main__.py └── helper │ ├── message.py │ ├── utils.py │ └── validator.py ├── captain-definition ├── get_session.py ├── requirements.txt ├── runtime.txt └── sample.config.toml /.gitignore: -------------------------------------------------------------------------------- 1 | __pycache__ 2 | log.txt 3 | config.toml 4 | *.session -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viperadnan-git/telegram-message-forwarder-bot/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viperadnan-git/telegram-message-forwarder-bot/HEAD/LICENSE -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- 1 | worker: python3 -m bot 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viperadnan-git/telegram-message-forwarder-bot/HEAD/README.md -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viperadnan-git/telegram-message-forwarder-bot/HEAD/app.json -------------------------------------------------------------------------------- /bot/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viperadnan-git/telegram-message-forwarder-bot/HEAD/bot/__init__.py -------------------------------------------------------------------------------- /bot/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viperadnan-git/telegram-message-forwarder-bot/HEAD/bot/__main__.py -------------------------------------------------------------------------------- /bot/helper/message.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bot/helper/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viperadnan-git/telegram-message-forwarder-bot/HEAD/bot/helper/utils.py -------------------------------------------------------------------------------- /bot/helper/validator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viperadnan-git/telegram-message-forwarder-bot/HEAD/bot/helper/validator.py -------------------------------------------------------------------------------- /captain-definition: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viperadnan-git/telegram-message-forwarder-bot/HEAD/captain-definition -------------------------------------------------------------------------------- /get_session.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viperadnan-git/telegram-message-forwarder-bot/HEAD/get_session.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | pyrogram==2.0.106 2 | TgCrypto 3 | toml 4 | jsonschema 5 | -------------------------------------------------------------------------------- /runtime.txt: -------------------------------------------------------------------------------- 1 | python-3.10.11 -------------------------------------------------------------------------------- /sample.config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viperadnan-git/telegram-message-forwarder-bot/HEAD/sample.config.toml --------------------------------------------------------------------------------