mirror of
https://github.com/imgproxy/imgproxy.git
synced 2024-11-24 08:12:38 +02:00
11 lines
114 B
Go
11 lines
114 B
Go
//go:build !linux
|
|
// +build !linux
|
|
|
|
package memory
|
|
|
|
import "runtime/debug"
|
|
|
|
func Free() {
|
|
debug.FreeOSMemory()
|
|
}
|