10 lines
166 B
Python
10 lines
166 B
Python
"""
|
|
MokPyo application package.
|
|
|
|
- Central entry point for app-level imports
|
|
"""
|
|
|
|
from .main import app
|
|
from .core import settings
|
|
|
|
__version__ = settings.APP_VERSION |