* Use encoding/json for genesis * Fix typo * WIP Add test * Add integration test * byebye singleton Co-authored-by: mergify[bot] <37929162+mergify[bot]@users.noreply.github.com>
15 lines
191 B
Go
15 lines
191 B
Go
package main
|
|
|
|
import (
|
|
"os"
|
|
|
|
"github.com/cosmos/cosmos-sdk/simapp/simd/cmd"
|
|
)
|
|
|
|
func main() {
|
|
rootCmd, _ := cmd.NewRootCmd()
|
|
if err := cmd.Execute(rootCmd); err != nil {
|
|
os.Exit(1)
|
|
}
|
|
}
|