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
// Used to create, manage, and parse unique IDs. This code creates stripe-like IDs, | |
// (e.g., xx_000000000000000000000000000). It allows for a prefix and a 27 | |
// character ksuid separated by an underscore. The prefix makes it easy | |
// to visibly identify what the ID is for. | |
// | |
// Author: Kirk Morales | |
package util | |
import ( |
OlderNewer