refactor(bottle): move runner/state package

This commit is contained in:
2026-07-06 21:01:35 +00:00
parent 08e8cf7c13
commit 29249f93b7
12 changed files with 15 additions and 259 deletions
+2 -2
View File
@@ -16,7 +16,7 @@ from __future__ import annotations
from abc import ABC, abstractmethod
from . import ActiveAgent
from ..bottle_state import mark_preserved, write_committed_image
from ..bottle.state import mark_preserved, write_committed_image
from ..log import die, info
@@ -66,7 +66,7 @@ class Freezer(ABC):
def commit_slug(self, slug: str) -> None:
"""Convenience entry for cmd_commit when only a slug is available."""
from ..bottle_state import read_metadata
from ..bottle.state import read_metadata
metadata = read_metadata(slug)
agent = ActiveAgent(
backend_name=self.backend_name,