This commit is contained in:
nose
2025-12-11 19:04:02 -08:00
parent 6863c6c7ea
commit 16d8a763cd
103 changed files with 4759 additions and 9156 deletions

View File

@@ -8,8 +8,8 @@ import shutil
from . import register
import pipeline as ctx
from ._shared import Cmdlet, CmdletArg, SharedArgs, parse_cmdlet_args, get_field, normalize_hash
from helper.logger import log, debug
from helper.store import FileStorage
from SYS.logger import log, debug
from Store import Store
from config import resolve_output_dir
@@ -68,8 +68,8 @@ class Get_File(Cmdlet):
debug(f"[get-file] Getting storage backend: {store_name}")
# Get storage backend
storage = FileStorage(config)
backend = storage[store_name]
store = Store(config)
backend = store[store_name]
debug(f"[get-file] Backend retrieved: {type(backend).__name__}")
# Get file metadata to determine name and extension