Added models; started working on project routes
This commit is contained in:
12
models/benchmark.go
Normal file
12
models/benchmark.go
Normal file
@ -0,0 +1,12 @@
|
||||
package models
|
||||
|
||||
import (
|
||||
"gorm.io/gorm"
|
||||
)
|
||||
|
||||
type Benchmark struct {
|
||||
gorm.Model
|
||||
Name string
|
||||
ScoringType string
|
||||
Description string
|
||||
}
|
Reference in New Issue
Block a user