navidrome/main.go

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

13 lines
135 B
Go
Raw Normal View History

2016-02-24 00:41:35 +01:00
package main
import (
"runtime"
"github.com/navidrome/navidrome/cmd"
)
2016-02-24 00:41:35 +01:00
func main() {
runtime.MemProfileRate = 0
2020-07-02 22:34:21 +02:00
cmd.Execute()
2016-02-24 00:41:35 +01:00
}