Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
View Source
var ( RootCmd = &cobra.Command{ Use: "aurora", Short: "client-facing api server for the Hcnet network", SilenceErrors: true, SilenceUsage: true, Long: "Client-facing API server for the Hcnet network. It acts as the interface between Hcnet Core " + "and applications that want to access the Hcnet network. It allows you to submit transactions to the " + "network, check the status of accounts, subscribe to event streams and more.\n" + "DEPRECATED - the use of command-line flags has been deprecated in favor of environment variables. Please" + "consult our Configuring section in the developer documentation on how to use them - https://developers.hcnet.org/docs/run-api-server/configuring", RunE: func(cmd *cobra.Command, args []string) error { app, err := aurora.NewAppFromFlags(globalConfig, globalFlags) if err != nil { return err } return app.Serve() }, } )
Functions ¶
Types ¶
type ErrExitCode ¶ added in v1.11.1
type ErrExitCode int
ErrExitCode Indicates we want to exit with a specific error code without printing an error.
func (ErrExitCode) Error ¶ added in v1.11.1
func (e ErrExitCode) Error() string
Click to show internal directories.
Click to hide internal directories.