Advertisement
susilolabs

Go dynamic selected struct

May 17th, 2015
518
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Go 0.14 KB | None | 0 0
  1. package main
  2.  
  3. type User struct {
  4.     Id int64
  5.     Username string
  6.     Password string
  7.     Email string
  8.     GroupId int
  9. }
  10.  
  11. func main() {
  12. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement