keepalive.go 105 B

123456789
  1. // +build go1.7
  2. package main
  3. import "runtime"
  4. func keepAlive(i interface{}) {
  5. runtime.KeepAlive(i)
  6. }