ferroclass/storage.rs
1// SPDX-FileCopyrightText: 2026 Michael Jansen <ferroclass@michael-jansen.biz>
2// SPDX-License-Identifier: MPL-2.0
3
4//! Storage backends for reading YAML class and node definitions from disk.
5//!
6//! Currently only the [`file_system`] backend is supported (directory-tree
7//! layout with `_init.yml` autoloading), matching the Python reclass
8//! `yaml_fs` and `yaml_file` storage types.
9
10pub mod file_system;