s1llyw0rdz/web/handler/form/settings.go

18 lines
255 B
Go
Raw Normal View History

2021-11-25 06:37:30 +00:00
package form
import (
"net/http"
)
type SettingsForm struct {
Homepage string
About string
}
func NewSettingsForm(r *http.Request) *SettingsForm {
return &SettingsForm{
Homepage: r.FormValue("homepage"),
About: r.FormValue("about"),
}
}