1
0
mirror of https://github.com/astaxie/beego.git synced 2024-07-02 16:14:14 +00:00
Beego/examples/blog/blog.go
2012-03-30 23:48:36 +08:00

18 lines
286 B
Go

// Copyright 2011 Google Inc. All rights reserved.
// Use of this source code is governed by the Apache 2.0
// license that can be found in the LICENSE file.
package guestbook
import (
"../../beego"
)
func init() {
beego.C.loadconfig()
}
func main() {
app:=beego.App
app.Run()
}