Created
October 18, 2017 09:02
-
-
Save nhocki/4d6fa2284139ee19118de73301aa989c to your computer and use it in GitHub Desktop.
UUID generation tool
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
package main | |
import ( | |
"fmt" | |
"github.com/mattetti/uuid" | |
) | |
func main() { | |
fmt.Println(uuid.GenUUID()) | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment