mirror of
https://github.com/hay-kot/homebox.git
synced 2025-06-04 11:32:28 +00:00
chore: bump all go dependencies (#614)
* bump all
* code-generation
Former-commit-id: c0e8e34065
This commit is contained in:
parent
742ece7923
commit
1adf24e109
40 changed files with 659 additions and 292 deletions
|
@ -356,11 +356,15 @@ func (ifc *ItemFieldCreate) createSpec() (*ItemField, *sqlgraph.CreateSpec) {
|
|||
// ItemFieldCreateBulk is the builder for creating many ItemField entities in bulk.
|
||||
type ItemFieldCreateBulk struct {
|
||||
config
|
||||
err error
|
||||
builders []*ItemFieldCreate
|
||||
}
|
||||
|
||||
// Save creates the ItemField entities in the database.
|
||||
func (ifcb *ItemFieldCreateBulk) Save(ctx context.Context) ([]*ItemField, error) {
|
||||
if ifcb.err != nil {
|
||||
return nil, ifcb.err
|
||||
}
|
||||
specs := make([]*sqlgraph.CreateSpec, len(ifcb.builders))
|
||||
nodes := make([]*ItemField, len(ifcb.builders))
|
||||
mutators := make([]Mutator, len(ifcb.builders))
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue