go__ent_demo/start/ent/runtime.go

31 lines
1.2 KiB
Go

// Code generated by entc, DO NOT EDIT.
package ent
import (
"code.osinet.fr/fgm/go__ent_demo/ent/group"
"code.osinet.fr/fgm/go__ent_demo/ent/schema"
"code.osinet.fr/fgm/go__ent_demo/ent/user"
)
// The init function reads all schema descriptors with runtime code
// (default values, validators, hooks and policies) and stitches it
// to their package variables.
func init() {
groupFields := schema.Group{}.Fields()
_ = groupFields
// groupDescName is the schema descriptor for name field.
groupDescName := groupFields[0].Descriptor()
// group.NameValidator is a validator for the "name" field. It is called by the builders before save.
group.NameValidator = groupDescName.Validators[0].(func(string) error)
userFields := schema.User{}.Fields()
_ = userFields
// userDescAge is the schema descriptor for age field.
userDescAge := userFields[0].Descriptor()
// user.AgeValidator is a validator for the "age" field. It is called by the builders before save.
user.AgeValidator = userDescAge.Validators[0].(func(int) error)
// userDescName is the schema descriptor for name field.
userDescName := userFields[1].Descriptor()
// user.DefaultName holds the default value on creation for the name field.
user.DefaultName = userDescName.Default.(string)
}