mirror of
https://github.com/pterodactyl/wings.git
synced 2025-12-11 11:05:00 -06:00
15 lines
219 B
Go
15 lines
219 B
Go
package tokens
|
|
|
|
import (
|
|
"github.com/gbrlsnchs/jwt/v3"
|
|
)
|
|
|
|
type TransferPayload struct {
|
|
jwt.Payload
|
|
}
|
|
|
|
// GetPayload returns the JWT payload.
|
|
func (p *TransferPayload) GetPayload() *jwt.Payload {
|
|
return &p.Payload
|
|
}
|