You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
hugobot/feeds/form.go

10 lines
273 B
Go

package feeds
type FeedForm struct {
Name string `form:"name" binding:"required"`
Url string `form:"url" binding:"required"`
Format FeedFormat `form:"format"`
Categories []string `form:"categories"`
Section string `form:"section"`
}