Added models; started working on project routes

This commit is contained in:
2025-07-14 13:53:50 -04:00
parent 819baeb0c3
commit 0f89087134
8 changed files with 131 additions and 2 deletions

12
models/benchmark.go Normal file
View File

@ -0,0 +1,12 @@
package models
import (
"gorm.io/gorm"
)
type Benchmark struct {
gorm.Model
Name string
ScoringType string
Description string
}