s1llyw0rdz/web/handler/form/folder.go
2021-11-22 10:06:23 +01:00

15 lines
184 B
Go

package form
import (
"net/http"
)
type FolderForm struct {
Name string
}
func NewFolderForm(r *http.Request) *FolderForm {
return &FolderForm{
Name: r.FormValue("name"),
}
}