Added route to view test

This commit is contained in:
2025-07-14 13:53:50 -04:00
parent 99f45b3b3a
commit f3a2376c19
4 changed files with 22 additions and 1 deletions

View File

@ -36,5 +36,7 @@ func RegisterRoutes(f *flamego.Flame) {
f.Get("/create", routes.TestGetCreate)
f.Post("/create", binding.Form(forms.TestForm{}), routes.TestPostCreate)
f.Get("{test_id}", routes.TestGetView)
})
}