mirror of
https://github.com/hay-kot/homebox.git
synced 2025-06-03 11:02:29 +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
|
@ -306,11 +306,15 @@ func (mec *MaintenanceEntryCreate) createSpec() (*MaintenanceEntry, *sqlgraph.Cr
|
|||
// MaintenanceEntryCreateBulk is the builder for creating many MaintenanceEntry entities in bulk.
|
||||
type MaintenanceEntryCreateBulk struct {
|
||||
config
|
||||
err error
|
||||
builders []*MaintenanceEntryCreate
|
||||
}
|
||||
|
||||
// Save creates the MaintenanceEntry entities in the database.
|
||||
func (mecb *MaintenanceEntryCreateBulk) Save(ctx context.Context) ([]*MaintenanceEntry, error) {
|
||||
if mecb.err != nil {
|
||||
return nil, mecb.err
|
||||
}
|
||||
specs := make([]*sqlgraph.CreateSpec, len(mecb.builders))
|
||||
nodes := make([]*MaintenanceEntry, len(mecb.builders))
|
||||
mutators := make([]Mutator, len(mecb.builders))
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue