This file contains hidden or 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
| package lib | |
| import ( | |
| "fmt" | |
| "strings" | |
| ) | |
| type JsonKey string | |
| type JsonKeys []JsonKey |
This file contains hidden or 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
| package scs | |
| import ( | |
| "bytes" | |
| "crypto/rand" | |
| "encoding/base64" | |
| "encoding/gob" | |
| "encoding/json" | |
| "errors" | |
| "fmt" |