first try

This commit is contained in:
Sotirios Pupakis
2025-09-05 17:44:49 +02:00
parent f0aadeb2c7
commit 72731aeb10
10 changed files with 360 additions and 0 deletions

11
models/addonFiles.go Normal file
View File

@@ -0,0 +1,11 @@
package models
import "gorm.io/gorm"
type AddonFile struct {
gorm.Model
Path string `json:"path"`
Hash string `json:"hash"`
AddonID string `json:"-"`
VersionID int `json:"versionId"`
}