basecoin-rs
basecoin-rs copied to clipboard
Move all `impl` block for `Path` into the same file
Currently, From
and TryFrom
implementations for app::store::Path
are found in multiple files (ibc.rs
, auth.rs
, etc).
All these should be moved in src/app/store/mod.rs
next to the definition of Path
, as it makes it easier to know how Path
can be used by having all its trait implementations in one place.