package jwt type Manager struct { secret string } func NewManager(secret string) *Manager { return &Manager{secret: secret} }