package models type User struct { ID string `json:"id"` Username string `json:"username"` Password string `json:"password"` Role string `json:"role"` TwoFactorEnabled bool `json:"two_factor_enabled"` TwoFactorSecret string `json:"-"` }