golang project generate random key defined by length
go get github.com/swloopit/golang-random-key
how to use in this example generate a random key of lenght 30
package main
import (
"github.com/swloopit/golang-random-key"
"fmt"
)
func main(){
fmt.Println(randomkey.CreateRandomKey(30))
}