mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-03 20:47:35 +03:00
* Initial draft - UNTESTED * changes to Save() and Update() * apply col filter and limit nanoid * remove columns to not update
15 lines
196 B
Go
15 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()
|
|
}
|