示例#1
0
func runServer(ctx *cli.Context) {
	// first check the options
	log.SetDebugVisible(ctx.Int("debug"))
	config := ctx.String("config")

	server.RunServer(config)
}
示例#2
0
文件: server.go 项目: dedis/cothority
func runServer(ctx *cli.Context) {
	// first check the options
	config := ctx.String("config")

	server.RunServer(config)
}