from mirage.core.chroma.stat import stat as core_stat from mirage.ops.registry import op from mirage.types import FileStat, PathSpec @op("stat", resource="chroma") async def stat(accessor, path: PathSpec, *, index, **kwargs) -> FileStat: return await core_stat(accessor, path, index)