idecnode/pkg/model/point.go

15 lines
182 B
Go
Raw Normal View History

2024-10-20 03:39:07 +03:00
package model
import "encoding/gob"
func init() {
gob.Register((*Point)(nil))
}
type Point struct {
Username string
Email string
Password []byte
AuthString string
}