forked from mirrors/homebox
chore: bump all go dependencies (#614)
* bump all * code-generation Former-commit-id: c0e8e340655860f5bd3e92397a10ef844320eb11
This commit is contained in:
parent
742ece7923
commit
1adf24e109
40 changed files with 659 additions and 292 deletions
|
@ -300,11 +300,15 @@ func (nc *NotifierCreate) createSpec() (*Notifier, *sqlgraph.CreateSpec) {
|
|||
// NotifierCreateBulk is the builder for creating many Notifier entities in bulk.
|
||||
type NotifierCreateBulk struct {
|
||||
config
|
||||
err error
|
||||
builders []*NotifierCreate
|
||||
}
|
||||
|
||||
// Save creates the Notifier entities in the database.
|
||||
func (ncb *NotifierCreateBulk) Save(ctx context.Context) ([]*Notifier, error) {
|
||||
if ncb.err != nil {
|
||||
return nil, ncb.err
|
||||
}
|
||||
specs := make([]*sqlgraph.CreateSpec, len(ncb.builders))
|
||||
nodes := make([]*Notifier, len(ncb.builders))
|
||||
mutators := make([]Mutator, len(ncb.builders))
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue