2024-10-20 03:39:07 +03:00
|
|
|
package model
|
|
|
|
|
|
|
|
import "encoding/gob"
|
|
|
|
|
|
|
|
func init() {
|
|
|
|
gob.Register((*Point)(nil))
|
|
|
|
}
|
|
|
|
|
|
|
|
type Point struct {
|
2024-10-29 01:21:05 +03:00
|
|
|
Username string `json:"username"`
|
|
|
|
Email string `json:"email"`
|
|
|
|
Password []byte `json:"-"`
|
|
|
|
AuthString string `json:"auth_string"`
|
2024-10-20 03:39:07 +03:00
|
|
|
}
|