Pool is the context pool, it's used inside router and the framework by itself.
| 10 | |
| 11 | // Pool is the context pool, it's used inside router and the framework by itself. |
| 12 | type Pool struct { |
| 13 | pool *sync.Pool |
| 14 | } |
| 15 | |
| 16 | // NewPool creates and returns a new context pool. |
| 17 | func NewPool() *Pool { |
nothing calls this directly
no outgoing calls
no test coverage detected