11 lines
323 B
Python
11 lines
323 B
Python
"""macOS Apple Container backend.
|
|
|
|
Selectable via `BOT_BOTTLE_BACKEND=macos-container`. This package owns
|
|
the Apple `container` CLI integration; launch remains gated until the
|
|
sidecar network enforcement shape is implemented.
|
|
"""
|
|
|
|
from .backend import MacosContainerBottleBackend
|
|
|
|
__all__ = ["MacosContainerBottleBackend"]
|