You've already forked imgproxy
mirror of
https://github.com/imgproxy/imgproxy.git
synced 2025-12-05 23:28:10 +02:00
10 lines
97 B
Go
10 lines
97 B
Go
//go:build !linux
|
|
|
|
package memory
|
|
|
|
import "runtime/debug"
|
|
|
|
func Free() {
|
|
debug.FreeOSMemory()
|
|
}
|