Fixed result form stuff

This commit is contained in:
2025-07-14 13:53:50 -04:00
parent 6bb06205b0
commit 47f3dcdbd1
3 changed files with 8 additions and 8 deletions

View File

@ -56,6 +56,6 @@ func RegisterRoutes(f *flamego.Flame) {
// result routes
f.Group("/result", func() {
f.Post("/add", routes.ResultPostCreate)
f.Post("/add", binding.Form(forms.ResultForm{}), routes.ResultPostCreate)
})
}