1
0
mirror of https://github.com/astaxie/beego.git synced 2024-11-19 08:40:54 +00:00
Beego/examples/blog/model/user.go

14 lines
150 B
Go
Raw Normal View History

2012-03-30 15:48:36 +00:00
package model
import (
"./beego"
)
type Users struct {
username string
password string
beego.M
}
func NewUsers() (a *Users) {
return &Users{}
}