incus_client/resources.rs
1//! Resource CRUD surfaces. Each submodule owns one Incus resource type and
2//! is implemented independently against the stub files created here -
3//! `instances` in one pass, `images`/`networks`/`storage`/`projects`
4//! together in another, since they don't share any files.
5
6pub mod images;
7pub mod instances;
8pub mod networks;
9pub mod projects;
10pub mod storage;