mirror of
https://github.com/imgproxy/imgproxy.git
synced 2025-01-08 10:45:04 +02:00
10 lines
96 B
Go
10 lines
96 B
Go
// +build !linux
|
|
|
|
package memory
|
|
|
|
import "runtime/debug"
|
|
|
|
func Free() {
|
|
debug.FreeOSMemory()
|
|
}
|