Update Wall-X to 1.1.0 (#104)

This commit is contained in:
Starrick Liu
2026-06-15 11:40:00 +08:00
committed by GitHub
parent e23a586846
commit 72834e7de5
200 changed files with 33916 additions and 16771 deletions
+31
View File
@@ -0,0 +1,31 @@
"""Public data facade for backend selection and dataset construction."""
from wall_x.data import backends # noqa: F401 (side-effect registration)
from wall_x.data._bundle import DataBundle
from wall_x.data._protocol import BuildContext, DatasetBackend
from wall_x.data._registry import (
MissingOperationError,
available_backends,
backend_for,
build_data,
data_backend,
has_data_backend,
register,
register_module,
resolve_dataset_type,
)
__all__ = [
"DataBundle",
"BuildContext",
"DatasetBackend",
"MissingOperationError",
"data_backend",
"available_backends",
"backend_for",
"build_data",
"has_data_backend",
"register",
"register_module",
"resolve_dataset_type",
]