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