Does kite have its own client connection pool? Need to implement it myself? Is there a simple demo? ``` var captchaPoll *sync.Pool = &sync.Pool{ New: func() interface{} { k := ku.NewClient("http://localhost:3636/kite") k.Dial() return k }, } ```