package model import "encoding/gob" func init() { gob.Register((*Point)(nil)) } type Point struct { Username string Email string Password []byte AuthString string }