PoolHandler handles pool-related requests
| 13 | |
| 14 | // PoolHandler handles pool-related requests |
| 15 | type PoolHandler struct { |
| 16 | store *store.Store |
| 17 | deps *agent.Dependencies |
| 18 | pool *core.Pool |
| 19 | } |
| 20 | |
| 21 | // NewPoolHandler creates a new PoolHandler |
| 22 | func NewPoolHandler(st store.Store, deps *agent.Dependencies) *PoolHandler { |
nothing calls this directly
no outgoing calls
no test coverage detected