15 lines
323 B
Python
15 lines
323 B
Python
"""Compatibility wrapper for the public bottle runner API.
|
|
|
|
The implementation lives in :mod:`bot_bottle.bottle.runner`.
|
|
"""
|
|
|
|
from .bottle.runner import BottleError, destroy, freeze, resume_headless, start_headless
|
|
|
|
__all__ = [
|
|
"BottleError",
|
|
"destroy",
|
|
"freeze",
|
|
"resume_headless",
|
|
"start_headless",
|
|
]
|