1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35
|
// Copyright 2019-present Facebook Inc. All rights reserved.
// This source code is licensed under the Apache 2.0 license found
// in the LICENSE file in the root directory of this source tree.
// Code generated by entc, DO NOT EDIT.
package ent
import (
"github.com/facebook/ent/examples/start/ent/group"
"github.com/facebook/ent/examples/start/ent/schema"
"github.com/facebook/ent/examples/start/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)
}
|