Rename #[config(child)] to #[config(nested)]

This commit is contained in:
Lukas Kalbertodt
2021-07-24 14:51:02 +02:00
parent b71eaa0464
commit 09cc848b94
4 changed files with 18 additions and 18 deletions

View File

@@ -3,10 +3,10 @@ use confique::Config;
#[derive(Debug, Config)]
struct Conf {
#[config(child)]
#[config(nested)]
http: Http,
#[config(child)]
#[config(nested)]
cat: Cat,
}