Added benchmarks routes and views

This commit is contained in:
2025-07-14 13:53:50 -04:00
parent bee64576bc
commit fde8d1dee4
7 changed files with 176 additions and 6 deletions

7
web/forms/benchmark.go Normal file
View File

@ -0,0 +1,7 @@
package forms
type BenchmarkForm struct {
Name string `form:"benchmark_name" validate:"required"`
ScoringType string `form:"benchmark_scoring" validate:"required"`
Description string `form:"benchmark_description"`
}