1
0
mirror of https://github.com/imgproxy/imgproxy.git synced 2025-01-08 10:45:04 +02:00
imgproxy/keepalive.go

10 lines
105 B
Go
Raw Normal View History

2017-09-27 19:22:13 +02:00
// +build go1.7
package main
import "runtime"
func keepAlive(i interface{}) {
runtime.KeepAlive(i)
}