mirror of
https://github.com/colinear-labs/chain.git
synced 2026-03-04 20:34:26 -08:00
cosmostest -> colinear in dir structure
This commit is contained in:
25
cmd/colineard/main.go
Normal file
25
cmd/colineard/main.go
Normal file
@@ -0,0 +1,25 @@
|
||||
package main
|
||||
|
||||
import (
|
||||
"os"
|
||||
|
||||
"colinear/app"
|
||||
|
||||
svrcmd "github.com/cosmos/cosmos-sdk/server/cmd"
|
||||
"github.com/ignite/cli/ignite/pkg/cosmoscmd"
|
||||
)
|
||||
|
||||
func main() {
|
||||
rootCmd, _ := cosmoscmd.NewRootCmd(
|
||||
app.Name,
|
||||
app.AccountAddressPrefix,
|
||||
app.DefaultNodeHome,
|
||||
app.Name,
|
||||
app.ModuleBasics,
|
||||
app.New,
|
||||
// this line is used by starport scaffolding # root/arguments
|
||||
)
|
||||
if err := svrcmd.Execute(rootCmd, app.DefaultNodeHome); err != nil {
|
||||
os.Exit(1)
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user