Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
View Source
var ClientCmd = cli.Command{
Name: "client",
Usage: "A client (prover) that wants to prove something to the server (verifier)",
Flags: clientFlags,
Subcommands: clientSubcommands,
}
View Source
var ServerCmd = cli.Command{ Name: "server", Usage: "A server (verifier) that verifies clients (provers)", Subcommands: []cli.Command{ { Name: "start", Usage: "Starts emmy server", Flags: serverFlags, Action: func(ctx *cli.Context) error { err := startEmmyServer( ctx.Int("port"), ctx.String("cert"), ctx.String("key"), ctx.String("db"), ctx.String("logfile"), ctx.String("loglevel")) if err != nil { return cli.NewExitError(err, 1) } return nil }, }, }, }
Functions ¶
This section is empty.
Types ¶
This section is empty.
Click to show internal directories.
Click to hide internal directories.