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