// Run ...
func Run(application *echo.Echo) {
	var address = fmt.Sprintf("%s:%d", WebHost, WebPort)
	log.Printf("starting webserver on %s", address)
	if UseSSL {
		application.RunTLS(address, CertFile, KeyFile)
	} else {
		application.Run(address)
	}
}