17 lines
209 B
Go
17 lines
209 B
Go
|
|
package form
|
||
|
|
|
||
|
|
import (
|
||
|
|
"net/http"
|
||
|
|
)
|
||
|
|
|
||
|
|
type StatusForm struct {
|
||
|
|
Content string
|
||
|
|
Error string
|
||
|
|
}
|
||
|
|
|
||
|
|
func NewStatusForm(r *http.Request) *StatusForm {
|
||
|
|
return &StatusForm{
|
||
|
|
Content: r.FormValue("content"),
|
||
|
|
}
|
||
|
|
}
|