blocky/main_static.go
2022-09-08 22:34:08 +02:00

16 lines
172 B
Go

//go:build linux
// +build linux
package main
import (
_ "time/tzdata"
reaper "github.com/ramr/go-reaper"
)
//nolint:gochecknoinits
func init() {
go reaper.Reap()
}