navidrome/main.go
Yash Jipkate d910beea75
Add Native Sharing REST API (#1150)
* Initial draft - UNTESTED

* changes to Save() and Update()

* apply col filter and limit nanoid

* remove columns to not update
2026-01-02 19:32:11 +00:00

16 lines
196 B
Go

package main
import (
"math/rand"
"runtime"
"time"
"github.com/navidrome/navidrome/cmd"
)
func main() {
rand.Seed(time.Now().UTC().UnixNano())
runtime.MemProfileRate = 0
cmd.Execute()
}