10 lines
156 B
Go
10 lines
156 B
Go
package main
|
|
|
|
type User struct {
|
|
id uint
|
|
name string
|
|
password string
|
|
color string
|
|
isPasswordHashed bool
|
|
}
|