mirror of
https://github.com/ent/ent.git
synced 2026-05-24 09:31:56 +03:00
36 lines
1.4 KiB
Go
36 lines
1.4 KiB
Go
// 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 (
|
|
"entgo.io/ent/examples/start/ent/group"
|
|
"entgo.io/ent/examples/start/ent/schema"
|
|
"entgo.io/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)
|
|
}
|