mirror of
https://github.com/astaxie/beego.git
synced 2024-11-19 04:10:55 +00:00
14 lines
150 B
Go
14 lines
150 B
Go
|
package model
|
||
|
import (
|
||
|
"./beego"
|
||
|
)
|
||
|
|
||
|
type Users struct {
|
||
|
username string
|
||
|
password string
|
||
|
beego.M
|
||
|
}
|
||
|
|
||
|
func NewUsers() (a *Users) {
|
||
|
return &Users{}
|
||
|
}
|