mirror of
https://github.com/astaxie/beego.git
synced 2024-11-19 10:10:56 +00:00
11 lines
172 B
Go
11 lines
172 B
Go
package controller
|
|
|
|
import (
|
|
"github.com/astaxie/beego/beego"
|
|
"../model"
|
|
)
|
|
|
|
func UserIndex(w beego.A) {
|
|
userinfo :=model.User.getAll()
|
|
beego.V.Render(w,"users/index")
|
|
} |