PRD 0003: Bottle Backend abstraction #5

Merged
didericis merged 44 commits from add-bottle-factory-abstraction into main 2026-05-11 14:49:43 -04:00
10 changed files with 4 additions and 4 deletions
Showing only changes of commit 1d2c18eaae - Show all commits
+1 -1
View File
@@ -5,7 +5,7 @@ from __future__ import annotations
import sys
from ..bottles import get_bottle_platform
from ..platform import get_bottle_platform
from ..log import info
from ._common import read_tty_line
+1 -1
View File
@@ -4,7 +4,7 @@ from __future__ import annotations
import argparse
from ..bottles import get_bottle_platform
from ..platform import get_bottle_platform
from ..manifest import Manifest
from ._common import PROG, USER_CWD
+1 -1
View File
@@ -11,7 +11,7 @@ import sys
import tempfile
from pathlib import Path
from ..bottles import BottleSpec, get_bottle_platform
from ..platform import BottleSpec, get_bottle_platform
from ..log import info
from ..manifest import Manifest
from ._common import PROG, USER_CWD, read_tty_line
@@ -9,7 +9,7 @@ The bulk of the implementation lives in sibling modules:
- platform: DockerBottlePlatform
This file only re-exports the public names so
`from claude_bottle.bottles.docker import DockerBottlePlatform` keeps
`from claude_bottle.platform.docker import DockerBottlePlatform` keeps
working.
"""