mirror of
https://github.com/status-im/fathom.git
synced 2025-03-01 11:30:28 +00:00
8 lines
98 B
Go
8 lines
98 B
Go
package models
|
|
|
|
type User struct {
|
|
ID int64
|
|
Email string
|
|
Password string `json:"-"`
|
|
}
|