11 lines
133 B
Go
11 lines
133 B
Go
|
package models
|
||
|
|
||
|
import "gorm.io/gorm"
|
||
|
|
||
|
type S5Challenge struct {
|
||
|
gorm.Model
|
||
|
Challenge string
|
||
|
Pubkey string
|
||
|
Type string
|
||
|
}
|