mirror of
https://github.com/foomo/fender.git
synced 2025-10-16 12:25:39 +00:00
8 lines
134 B
Go
8 lines
134 B
Go
package fender
|
|
|
|
type FendFields []FendField
|
|
|
|
func (f FendFields) Add(fields ...FendField) FendFields {
|
|
return append(f, fields...)
|
|
}
|