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

13
models/hardware.go Normal file
View File

@ -0,0 +1,13 @@
package models
import (
"gorm.io/gorm"
)
type Hardware struct {
gorm.Model
Name string
Type string
SerialNumber string
Description string
}