AdGuardHome/main.go
Andrey Meshkov 479675b6cc refactor: 💡 optimizing GC
Setting debug.SetGCPercent makes golang free memory faster. This greatly
improves overall RSS usage. Otherwise, golang prefers not to free memory
at all:)
2019-07-24 17:00:05 +03:00

19 lines
307 B
Go

package main
import (
"runtime/debug"
"github.com/AdguardTeam/AdGuardHome/home"
)
// version will be set through ldflags, contains current version
var version = "undefined"
// channel can be set via ldflags
var channel = "release"
func main() {
debug.SetGCPercent(10)
home.Main(version, channel)
}