feat: add S5 challenge model

This commit is contained in:
Derrick Hammer 2024-01-16 11:31:25 -05:00
parent fb136234a9
commit a62c6daa4a
Signed by: pcfreak30
GPG Key ID: C997C339BE476FF2
1 changed files with 10 additions and 0 deletions

View File

@ -0,0 +1,10 @@
package models
import "gorm.io/gorm"
type S5Challenge struct {
gorm.Model
Challenge string
Pubkey string
Type string
}