mirror of
https://github.com/httprunner/httprunner.git
synced 2026-05-20 07:40:32 +08:00
13 lines
191 B
Go
13 lines
191 B
Go
//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")
|
|
}
|