1
0
mirror of https://git.envs.net/envs/ifconfig synced 2024-11-22 09:51:57 +01:00
ifconfig/main.go
2014-08-14 14:15:52 +08:00

21 lines
286 B
Go

package main
import (
"github.com/astaxie/beego"
_ "github.com/missdeer/ifconfig/routers"
"os"
)
const (
HostVar = "VCAP_APP_HOST"
PortVar = "VCAP_APP_PORT"
)
func main() {
var port string
if port = os.Getenv(PortVar); port == "" {
port = "8080"
}
beego.Run(":" + port)
}