didier/didier/views/modals/__init__.py

19 lines
440 B
Python
Raw Normal View History

2022-08-30 01:32:46 +02:00
from .bookmarks import CreateBookmark
2022-07-16 00:14:02 +02:00
from .custom_commands import CreateCustomCommand, EditCustomCommand
from .dad_jokes import AddDadJoke
2022-08-13 00:41:47 +02:00
from .deadlines import AddDeadline
2023-02-02 23:16:51 +01:00
from .events import AddEvent
2022-08-10 01:04:19 +02:00
from .links import AddLink
2022-08-25 11:04:25 +02:00
from .memes import GenerateMeme
2022-07-16 00:14:02 +02:00
2022-08-30 01:32:46 +02:00
__all__ = [
"CreateBookmark",
"AddDadJoke",
"AddDeadline",
2023-02-02 23:16:51 +01:00
"AddEvent",
2022-08-30 01:32:46 +02:00
"CreateCustomCommand",
"EditCustomCommand",
"AddLink",
"GenerateMeme",
]