예제 #1
0
파일: main.go 프로젝트: eraserxp/coedit
func main() {
	//run the websocket proxy
	//startWebsocketProxy()
	beego.AddAPPStartHook(hook)

	//run the web server to serve the static files
	beego.BConfig.WebConfig.StaticDir["/doc/static"] = "static"
	fmt.Println("write into database")

	//set session

	beego.Run()
}
예제 #2
0
파일: hooks.go 프로젝트: cokeboL/mandela
func init() {
	operation = new(Operation)

	beego.AddAPPStartHook(operation.Run)
}