Currently a lot of functionality is split between lib.rs and builder.rs. I think it would make sense to split functionality into modules based off of their endpoint they hit (e.g. container.rs and image.rs) since that should make it easier for maintainers to maintain and new members to navigate the docs. We could keep most of the API somewhat unchanged through re-exports.
I plan to take this on if there's interest coming by wanted to make sure before I sent the PR in.
Currently a lot of functionality is split between
lib.rs
andbuilder.rs
. I think it would make sense to split functionality into modules based off of their endpoint they hit (e.g.container.rs
andimage.rs
) since that should make it easier for maintainers to maintain and new members to navigate the docs. We could keep most of the API somewhat unchanged through re-exports.I plan to take this on if there's interest coming by wanted to make sure before I sent the PR in.