mirror of
https://github.com/go-kratos/kratos.git
synced 2025-02-03 13:11:42 +02:00
8 lines
140 B
Go
8 lines
140 B
Go
|
package core
|
||
|
|
||
|
var (
|
||
|
_pool = NewPool(_size)
|
||
|
// GetPool retrieves a buffer from the pool, creating one if necessary.
|
||
|
GetPool = _pool.Get
|
||
|
)
|