Lots of changes

This commit is contained in:
2023-12-02 22:16:16 -05:00
parent 16704aeeb1
commit c5df026d04
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"`
}