remove unused variable devCertPool in broker struct

Signed-off-by: Jianhui Zhao <zhaojh329@gmail.com>
This commit is contained in:
Jianhui Zhao
2025-07-02 17:28:45 +08:00
parent af9eaa7cb4
commit 8f2ae9d6c9
-2
View File
@@ -1,7 +1,6 @@
package main
import (
"crypto/x509"
"encoding/binary"
"fmt"
"io"
@@ -41,7 +40,6 @@ type broker struct {
httpResp chan *httpResp
httpReq chan *httpReq
fileProxy sync.Map
devCertPool *x509.CertPool
}
func newBroker(cfg *config.Config) *broker {