1
0
mirror of https://github.com/astaxie/beego.git synced 2024-07-04 19:05:10 +00:00
Beego/examples/blog/blog.go

18 lines
286 B
Go
Raw Normal View History

2012-03-26 15:18:16 +00:00
// 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 (
2012-03-30 15:48:36 +00:00
"../../beego"
2012-03-26 15:18:16 +00:00
)
func init() {
2012-03-30 15:48:36 +00:00
beego.C.loadconfig()
2012-03-26 15:18:16 +00:00
}
2012-03-30 15:48:36 +00:00
func main() {
app:=beego.App
app.Run()
}