blob: 3975ed9b0f00d10278d0b5353910345c9c5c7a45 (
plain) (
tree)
|
|
package model
import "encoding/gob"
func init() {
gob.Register((*Point)(nil))
}
type Point struct {
Username string `json:"username"`
Email string `json:"email"`
Password []byte `json:"-"`
AuthString string `json:"auth_string"`
}
|