app/utils/__init__.py

9 lines
146 B
Python
Raw Normal View History

2024-04-19 16:59:43 +00:00
from .view import AppView
from .title import Title
from .views import views_handler
__all__ = [
"AppView",
"Title",
"views_handler"
]