refactor: move boomer from hrp internal to pkg

This commit is contained in:
debugtalk
2022-10-11 11:17:58 +08:00
parent c2679a1508
commit 3e1c57b777
41 changed files with 41 additions and 38 deletions
+12
View File
@@ -0,0 +1,12 @@
//go:build windows
package boomer
import (
"github.com/rs/zerolog/log"
)
// set resource limit
func SetUlimit(limit uint64) {
log.Warn().Msg("windows does not support setting ulimit")
}