This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//original code by @Elliot_f of Tutorial Edge youtube channel: https://www.youtube.com/watch?v=-Scg9INymBs | |
//some adaptations to use with gorilla/mux | |
package main | |
import ( | |
"encoding/json" | |
"fmt" | |
jwt "github.com/dgrijalva/jwt-go" | |
"github.com/gorilla/mux" |