Closed Kulunchick closed 1 year ago
Need to create a basic structure of bot
Dependencies:
File structure
├── README.md ├── app | └── bot | | ├── handlers # bot handlers | | | └── debug.py # debug handler | | └── factory.py # bot factory | └── api | | ├── routes # api routes | | | └── webhook.py # bot webhook | | ├── stubs.py # api depebdencies | | └── factory.py # api factory | ├── settings.py # config | ├── custom_logging.py # custom logging class | └── main.py ├── .env # environment variables ├── pyproject.toml # project dependencies └── poetry.lock
Need to create a basic structure of bot
Dependencies:
File structure