package models import "github.com/jinzhu/gorm" type UserAPIToken struct { gorm.Model Token string ExpiresAt string UserID int }