cli/entity/user.go
Angelo a15d59d2d2
Ability to Delete Project from CLI (#158)
* 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
2021-10-06 14:54:12 -04:00

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
}