mirror of
https://github.com/MetaCubeX/Clash.Meta.git
synced 2025-04-04 21:53:37 +03:00
9 lines
145 B
Go
9 lines
145 B
Go
package pool
|
|
|
|
func Get(size int) []byte {
|
|
return defaultAllocator.Get(size)
|
|
}
|
|
|
|
func Put(buf []byte) error {
|
|
return defaultAllocator.Put(buf)
|
|
}
|