9 lines
308 B
Python
9 lines
308 B
Python
# -*- coding: utf-8 -*-
|
|
"""script_engine module root package.
|
|
|
|
Delegates to the real package script_engine.script_engine so that
|
|
`import script_engine` exposes the full public API.
|
|
"""
|
|
from script_engine.script_engine import * # noqa: F401,F403
|
|
from script_engine.script_engine import __all__ # noqa: F401
|