package pool type Pool interface { Get() (interface{}, error) Put(interface{}) Destroy() Capacity() int Available() int }