Added benchmarks routes and views

This commit is contained in:
Gregory Ballantine
2024-05-29 09:11:13 -04:00
parent 95fe5ab400
commit ba06a2ea4c
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"`
}