You've already forked golang-base-project
10 lines
111 B
Go
10 lines
111 B
Go
package models
|
|
|
|
import "gorm.io/gorm"
|
|
|
|
type Session struct {
|
|
gorm.Model
|
|
Identifier string
|
|
UserID uint
|
|
}
|