app/utils/__init__.py

12 lines
204 B
Python

from .view import AppView
from .title import Title
from .views import views_handler
from .network import checkInternet
__all__ = [
'AppView',
'Title',
'views_handler',
'checkInternet',
]