api key auth added

This commit is contained in:
Ravi Prasad
2025-05-08 00:32:49 -05:00
parent 09d81c251a
commit 8c577b441c
17 changed files with 345 additions and 61 deletions
+11
View File
@@ -0,0 +1,11 @@
package main
import (
"fmt"
"github.com/nprasad2077/NBA_Go/utils/security"
)
func main() {
raw, _ := security.GenerateRawKey()
fmt.Println(raw)
}