Remove math/rand and only use crypto/rand

This commit is contained in:
Deluan 2022-11-27 21:53:13 -05:00
parent 195f39182d
commit 950b5dc1ce
3 changed files with 18 additions and 15 deletions

View file

@ -1,16 +1,13 @@
package main
import (
"math/rand"
"runtime"
"time"
"github.com/navidrome/navidrome/cmd"
_ "github.com/navidrome/navidrome/model/criteria"
)
func main() {
rand.Seed(time.Now().UTC().UnixNano())
runtime.MemProfileRate = 0
cmd.Execute()
}