mirror of
https://github.com/astaxie/beego.git
synced 2024-11-19 06:50:57 +00:00
27 lines
216 B
Go
27 lines
216 B
Go
package beego
|
|
|
|
import "./core"
|
|
|
|
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
|
|
} |