Open
Description
Expected Behavior
I can include a prelude for operations and effects:
use stellar_client::resources::operations::prelude::*;
use stellar_client::resources::effects::prelude::*;
If this is easy, it might make sense to also have one for resources it self, so that you can easily include all the resources instead of by type.
Actual Behavior
You need to individually include types or use *
in a potentially bad way. We should remove the *
usage if it already exists (operations and effects come to mind).