Files
imgproxy/keepalive.go
2017-09-27 23:22:13 +06:00

10 lines
105 B
Go

// +build go1.7
package main
import "runtime"
func keepAlive(i interface{}) {
runtime.KeepAlive(i)
}