user.go 150 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 11 12 13 14 package model import ( "./beego" ) type Users struct { username string password string beego.M } func NewUsers() (a *Users) { return &Users{} }