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
3 changed files with 3 additions and 3 deletions
Showing only changes of commit c79966731c - Show all commits
@@ -16,7 +16,7 @@ from __future__ import annotations
import subprocess
from .log import die, info, warn
from ...log import die, info, warn
def network_name_for_slug(slug: str) -> str:
+1 -1
View File
@@ -17,13 +17,13 @@ from contextlib import contextmanager
from pathlib import Path
from typing import Iterator
from ... import network as network_mod
from ... import pipelock
from ... import skills as skills_mod
from ... import ssh as ssh_mod
from ...env_resolve import env_resolve
from ...log import die, info
from .. import BottleCleanupPlan, BottlePlan, BottlePlatform, BottleSpec
from . import network as network_mod
from . import util as docker_mod
from .bottle import DockerBottle
from .bottle_cleanup_plan import DockerBottleCleanupPlan
+1 -1
View File
@@ -7,7 +7,7 @@ import os
import subprocess
import unittest
from claude_bottle.network import (
from claude_bottle.platform.docker.network import (
network_create_egress,
network_create_internal,
network_remove,