tendermint / spn

A blockchain to launch blockchains.
Other
112 stars 43 forks source link

`app.go` simplify import names for modules #876

Closed lumtis closed 2 years ago

lumtis commented 2 years ago

We have the following imports for our modules:

launchmodule "github.com/tendermint/spn/x/launch"
launchmodulekeeper "github.com/tendermint/spn/x/launch/keeper"
launchmoduletypes "github.com/tendermint/spn/x/launch/types"

CLI automatically add module in the import name to avoid collision with variables for generic names

We should remove this suffix for cleaniness

launch "github.com/tendermint/spn/x/launch"
launchkeeper "github.com/tendermint/spn/x/launch/keeper"
launchtypes "github.com/tendermint/spn/x/launch/types"