Separate django app and bot handlers logic
Before:
- tgbot handlers are messed with django
tgbot
app
After:
tgbot
is a separate folder, which contains logic only about bot, not about users, views, models and so on- separated dispatcher and
system_commands
which are displayed in the main menu - created new django app
users