type T struct { I int `json:"i,omitempty"` F float64 `json:"f,omitempty"` B bool `json:"b,omitempty"` S string `json:"s,omitempty"` T *T `json:"t,omitempty"` Li []int `json:"li,omitempty"` Ls []string `json:"ls,omitempty"` }
type User struct { ent.Schema }
User holds the schema definition for the User entity.
func (User) Fields() []ent.Field
Fields of the User.