ferroclass 0.11.0

Hierarchical inventory management tool (reclass compatible)
Documentation
1
2
3
4
5
6
7
8
9
10
// SPDX-FileCopyrightText: 2026 Michael Jansen <mike@michael-jansen.biz>
// SPDX-License-Identifier: MPL-2.0

//! Storage backends for reading YAML class and node definitions from disk.
//!
//! Currently only the [`file_system`] backend is supported (directory-tree
//! layout with `_init.yml` autoloading), matching the Python reclass
//! `yaml_fs` and `yaml_file` storage types.

pub mod file_system;