limits_windows.go raw

   1  package limits
   2  
   3  // SetLimits is a no-op on Windows since it's not required there.
   4  func SetLimits() (e error) {
   5  	return nil
   6  }
   7