quintodrome/main.go

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

17 lines
247 B
Go
Raw Normal View History

2016-02-23 14:41:35 -09:00
package main
import (
"math/rand"
"runtime"
"time"
"github.com/navidrome/navidrome/cmd"
2021-10-21 14:03:46 -08:00
_ "github.com/navidrome/navidrome/model/criteria"
)
2016-02-23 14:41:35 -09:00
func main() {
rand.Seed(time.Now().UTC().UnixNano())
runtime.MemProfileRate = 0
2020-07-02 12:34:21 -08:00
cmd.Execute()
2016-02-23 14:41:35 -09:00
}