summaryrefslogblamecommitdiff
path: root/pkg/model/point.go
blob: 3975ed9b0f00d10278d0b5353910345c9c5c7a45 (plain) (tree)
1
2
3
4
5
6
7
8
9








                                   



                                              
 
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"`
}