Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
View Source
var ( RunCmd = &cobra.Command{ Use: "run", Short: "start alameda datahub server", Long: "", Run: func(cmd *cobra.Command, args []string) { var ( err error server *datahub.Server ) app.PrintSoftwareVer() initConfig() initLogger() setLoggerScopesWithConfig(*config.Log) displayConfig() server, err = datahub.NewServer(config) if err != nil { panic(err) } if err = server.Run(); err != nil { server.Stop() panic(err) } }, } )
Functions ¶
This section is empty.
Types ¶
This section is empty.
Click to show internal directories.
Click to hide internal directories.