mirror of
https://github.com/MetaCubeX/mihomo.git
synced 2026-02-26 16:57:08 +00:00
10 lines
145 B
Go
10 lines
145 B
Go
package pool
|
|
|
|
func Get(size int) []byte {
|
|
return DefaultAllocator.Get(size)
|
|
}
|
|
|
|
func Put(buf []byte) error {
|
|
return DefaultAllocator.Put(buf)
|
|
}
|