blob: 02e9d43e26acfaf66d45e0d66965cf1fcb30873b (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
package model
import "encoding/gob"
func init() {
gob.Register((*Point)(nil))
}
type Point struct {
Username string
Email string
Password []byte
AuthString string
}
|