Skip to content
  • This project
    • Loading...
  • Sign in

张磊 / FileStorageBeego

Go to a project
Toggle navigation
Toggle navigation pinning
  • Projects
  • Groups
  • Snippets
  • Help
  • Project
  • Activity
  • Repository
  • Pipelines
  • Graphs
  • Issues 0
  • Merge Requests 0
  • Wiki
  • Network
  • Create a new issue
  • Builds
  • Commits
  • Issue Boards
  • Files
  • Commits
  • Network
  • Compare
  • Branches
  • Tags
Switch branch/tag
  • FileStorageBeego
  • examples
  • blog
  • controller
  • user.go
  • xiemengjun's avatar
    modify struc · 2121c4dd
    xiemengjun committed 2012-03-30 23:48:36 +0800
    2121c4dd Browse Files
user.go 172 Bytes
Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11
package controller

import (
	"github.com/astaxie/beego/beego"
	"../model"
)

func UserIndex(w beego.A) {
	userinfo :=model.User.getAll()
	beego.V.Render(w,"users/index")
}