func initRest() {
	if *Local {
		frontend.InitForTesting(*localFrontend)
		util.SetVarsForLocal()
	} else {
		frontend.MustInit()
	}
}
func Init() {
	common.Init()
	if *Local {
		util.SetVarsForLocal()
	}
}