Basic global hash whitelist

This commit is contained in:
Sotirios Pupakis
2025-09-27 02:14:38 +02:00
parent bf3ea1bf62
commit ed9489b01a
5 changed files with 53 additions and 3 deletions

8
models/whitelisted.go Normal file
View File

@@ -0,0 +1,8 @@
package models
import "gorm.io/gorm"
type WhitelistedHash struct {
gorm.Model
Hash string `json:"hash"`
}