Lots of changes

This commit is contained in:
2025-07-14 13:53:50 -04:00
parent e09d399c98
commit 7c13b1f209
16 changed files with 135 additions and 122 deletions

View File

@ -1,6 +0,0 @@
package forms
type ProjectForm struct {
Name string `form:"project_name" validate:"required"`
Description string `form:"project_description"`
}

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

@ -0,0 +1,7 @@
package forms
type TestForm struct {
DateTag string `form:"test_date_tag" validate:"required"`
Hardware int `form:"test_hardware" validate:"required"`
Benchmarks []string `form:"test_benchmarks" validate:"required"`
}