mirror of
https://github.com/hay-kot/homebox.git
synced 2025-06-01 10: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
|
@ -43,6 +43,14 @@ func (lu *LabelUpdate) SetName(s string) *LabelUpdate {
|
|||
return lu
|
||||
}
|
||||
|
||||
// SetNillableName sets the "name" field if the given value is not nil.
|
||||
func (lu *LabelUpdate) SetNillableName(s *string) *LabelUpdate {
|
||||
if s != nil {
|
||||
lu.SetName(*s)
|
||||
}
|
||||
return lu
|
||||
}
|
||||
|
||||
// SetDescription sets the "description" field.
|
||||
func (lu *LabelUpdate) SetDescription(s string) *LabelUpdate {
|
||||
lu.mutation.SetDescription(s)
|
||||
|
@ -336,6 +344,14 @@ func (luo *LabelUpdateOne) SetName(s string) *LabelUpdateOne {
|
|||
return luo
|
||||
}
|
||||
|
||||
// SetNillableName sets the "name" field if the given value is not nil.
|
||||
func (luo *LabelUpdateOne) SetNillableName(s *string) *LabelUpdateOne {
|
||||
if s != nil {
|
||||
luo.SetName(*s)
|
||||
}
|
||||
return luo
|
||||
}
|
||||
|
||||
// SetDescription sets the "description" field.
|
||||
func (luo *LabelUpdateOne) SetDescription(s string) *LabelUpdateOne {
|
||||
luo.mutation.SetDescription(s)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue