├── Procfile ├── README.md ├── app.json ├── crocodile.log ├── crodile_presentation.odp ├── game.py ├── main.py ├── requirements.txt ├── settings.py ├── test_game.py ├── words.txt └── wordsone.txt /Procfile: -------------------------------------------------------------------------------- 1 | worker: python3 main.py 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aykhan026/OyunBotTest/HEAD/README.md -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aykhan026/OyunBotTest/HEAD/app.json -------------------------------------------------------------------------------- /crocodile.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aykhan026/OyunBotTest/HEAD/crocodile.log -------------------------------------------------------------------------------- /crodile_presentation.odp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aykhan026/OyunBotTest/HEAD/crodile_presentation.odp -------------------------------------------------------------------------------- /game.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aykhan026/OyunBotTest/HEAD/game.py -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aykhan026/OyunBotTest/HEAD/main.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | python-telegram-bot 2 | -------------------------------------------------------------------------------- /settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aykhan026/OyunBotTest/HEAD/settings.py -------------------------------------------------------------------------------- /test_game.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aykhan026/OyunBotTest/HEAD/test_game.py -------------------------------------------------------------------------------- /words.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aykhan026/OyunBotTest/HEAD/words.txt -------------------------------------------------------------------------------- /wordsone.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aykhan026/OyunBotTest/HEAD/wordsone.txt --------------------------------------------------------------------------------