mirror of
https://github.com/railwayapp/cli
synced 2026-04-21 14:07:23 +00:00
* testing the changes locally - error experienced * logging I guess * delete project working, will add copy improvements * confirmation * better flow and logging * readme adjustment * defer * no whammies * appease * more bugs
8 lines
166 B
Go
8 lines
166 B
Go
package entity
|
|
|
|
type User struct {
|
|
Id string `json:"id,omitempty"`
|
|
Name string `json:"name,omitempty"`
|
|
Email string `json:"email,omitempty"`
|
|
Has2FA bool
|
|
}
|