sgaunet/jwt-cli

View on GitHub
cmd/decode.go

Summary

Maintainability
A
0 mins
Test Coverage
package cmd

import (
    "github.com/spf13/cobra"
)

// decodeCmd represents the decode command
var decodeCmd = &cobra.Command{
    Use:   "decode",
    Short: "decode JWT token",
    Long:  `decode JWT token`,
}