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
  • model
  • user.go
  • xiemengjun's avatar
    modify struc · 2121c4dd
    xiemengjun committed 2012-03-30 23:48:36 +0800
    2121c4dd Browse Files
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{}
}