s1llyw0rdz/web/handler/form/status.go

17 lines
209 B
Go
Raw Normal View History

2021-11-22 13:00:19 +00:00
package form
import (
"net/http"
)
type StatusForm struct {
Content string
Error string
}
func NewStatusForm(r *http.Request) *StatusForm {
return &StatusForm{
Content: r.FormValue("content"),
}
}