8 lines
99 B
Python
8 lines
99 B
Python
|
|
"""
|
||
|
|
Admin Panel Application Package
|
||
|
|
"""
|
||
|
|
from app.main import create_app
|
||
|
|
|
||
|
|
__all__ = ['create_app']
|
||
|
|
|