Files
NBA_Go/cmd/generate_key.go
2025-05-08 00:32:49 -05:00

11 lines
151 B
Go

package main
import (
"fmt"
"github.com/nprasad2077/NBA_Go/utils/security"
)
func main() {
raw, _ := security.GenerateRawKey()
fmt.Println(raw)
}