# load configuration
Load yaml files from files or directories:
```rust
let entries = willdo::config::load("tests/dev/");
```
It supports glob patterns: `load("*.yaml")`
`entries` is an iterator over configuration entries that can apply to
a `Configuration` implementation, likely the graph builder:
```rust
use crate::willdo::config::ConfigurationEntry as _;
# let entries = willdo::config::load("tests/dev/");
# (|| {
let mut builder = willdo::graph::Graph::builder();
for entry in entries {
entry?.configure(&mut builder);
}
# Ok::<(),willdo::config::LoadError>(()) })().expect("configuration");
```