Files
bot-bottle/bot_bottle/api.py
T
didericis-codex 687868ea02
lint / lint (push) Failing after 2m5s
test / unit (pull_request) Failing after 21s
test / integration (pull_request) Failing after 18s
test / coverage (pull_request) Failing after 27s
refactor(bottle): move runner/state package (2/25)
2026-07-06 16:10:34 -04:00

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",
]