1
0
mirror of https://github.com/imgproxy/imgproxy.git synced 2024-11-24 08:12:38 +02:00
imgproxy/memory/free.go
2021-11-15 16:42:36 +06:00

11 lines
114 B
Go

//go:build !linux
// +build !linux
package memory
import "runtime/debug"
func Free() {
debug.FreeOSMemory()
}