10 lines
124 B
Go
10 lines
124 B
Go
package model
|
|
|
|
import (
|
|
"github.com/jinzhu/gorm"
|
|
)
|
|
|
|
type JwtBlacklist struct {
|
|
gorm.Model
|
|
Jwt string `gorm:"type:text"`
|
|
} |