Added result creation route

This commit is contained in:
2025-07-14 13:53:50 -04:00
parent e5a18f77f2
commit b508efd5a8
5 changed files with 82 additions and 16 deletions

View File

@ -53,4 +53,9 @@ func RegisterRoutes(f *flamego.Flame) {
f.Get("/{test_id}", routes.TestGetView)
})
// result routes
f.Group("/result", func() {
f.Post("/add", routes.ResultPostCreate)
})
}