fender/fendfields.go
2021-07-09 11:08:29 +02:00

8 lines
134 B
Go

package fender
type FendFields []FendField
func (f FendFields) Add(fields ...FendField) FendFields {
return append(f, fields...)
}