Added currencies command!
This commit is contained in:
parent
f10223a904
commit
d82a7e0fc1
|
@ -4,3 +4,4 @@ from . import echo
|
||||||
from . import add
|
from . import add
|
||||||
from . import settings
|
from . import settings
|
||||||
from . import test
|
from . import test
|
||||||
|
from . import currencies
|
||||||
|
|
|
@ -1,6 +1,4 @@
|
||||||
from aiogram import types
|
from aiogram import types
|
||||||
|
|
||||||
|
|
||||||
from loader import dp
|
from loader import dp
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -1,2 +1,3 @@
|
||||||
aiogram<3.0
|
aiogram<3.0
|
||||||
environs==9.5.0
|
environs==9.5.0
|
||||||
|
requests~=2.27.1
|
|
@ -10,6 +10,7 @@ async def set_default_commands(dp):
|
||||||
types.BotCommand("edit", "Edit expense."),
|
types.BotCommand("edit", "Edit expense."),
|
||||||
types.BotCommand("list", "See my expenses."),
|
types.BotCommand("list", "See my expenses."),
|
||||||
types.BotCommand("settings", "Configure bot."),
|
types.BotCommand("settings", "Configure bot."),
|
||||||
|
types.BotCommand("currencies", "USD\EUR - GEL."),
|
||||||
types.BotCommand("test", "Test command."),
|
types.BotCommand("test", "Test command."),
|
||||||
# types.BotCommand("settings3", "Configure bot."),
|
# types.BotCommand("settings3", "Configure bot."),
|
||||||
]
|
]
|
||||||
|
|
Loading…
Reference in New Issue