s1llyw0rdz/web/handler/form/settings.go
2021-11-25 07:37:30 +01:00

17 lines
255 B
Go

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"),
}
}