Turn off memory profiling, saving a couple of megabytes

This commit is contained in:
Deluan 2021-02-01 16:30:06 -05:00 committed by Joe Stump
parent f708686485
commit 5dbaa61483
No known key found for this signature in database
GPG Key ID: 29151C3EC48A0EB9

View File

@ -1,7 +1,12 @@
package main
import "github.com/deluan/navidrome/cmd"
import (
"runtime"
"github.com/deluan/navidrome/cmd"
)
func main() {
runtime.MemProfileRate = 0
cmd.Execute()
}