1
0
mirror of https://github.com/astaxie/beego.git synced 2024-10-01 09:21:49 +00:00
Beego/beego/beego.go

27 lines
216 B
Go
Raw Normal View History

2012-03-05 13:54:50 +00:00
package beego
2012-03-26 15:18:16 +00:00
import "./core"
2012-03-05 13:54:50 +00:00
2012-03-26 15:18:16 +00:00
type C struct {
core.Content
}
type M struct{
core.Model
}
type D struct{
core.Config
}
type U struct{
core.URL
}
type A struct{
core.Controller
}
type V struct{
core.View
2012-03-05 13:54:50 +00:00
}