1
0
mirror of https://github.com/astaxie/beego.git synced 2024-06-02 09:33:27 +00:00
Beego/examples/blog/model/user.go
2012-03-30 23:48:36 +08:00

14 lines
150 B
Go

package model
import (
"./beego"
)
type Users struct {
username string
password string
beego.M
}
func NewUsers() (a *Users) {
return &Users{}
}