mirror of
https://github.com/foomo/fender.git
synced 2025-10-16 12:25:39 +00:00
11 lines
166 B
Go
11 lines
166 B
Go
package fender
|
|
|
|
import "github.com/foomo/fender/fend"
|
|
|
|
func Field(name string, fends ...fend.Fend) FendField {
|
|
return FendField{
|
|
name: name,
|
|
fends: fends,
|
|
}
|
|
}
|