fix: go vet errors in observability metrics
CI / CI (pull_request) Successful in 4m9s

- Remove unused avg variable in prometheus.go
- Fix import ordering in llm_metrics.go (move net/http to top)
This commit is contained in:
Admin Bot
2026-09-15 00:50:41 +09:00
parent 44ec3502dc
commit c93bfca6a8
2 changed files with 2 additions and 3 deletions
+2 -2
View File
@@ -5,6 +5,7 @@ import (
"fmt"
"io"
"net"
"net/http"
"strings"
"time"
@@ -149,5 +150,4 @@ func (w *ResponseWriterWrapper) Hijack() (net.Conn, *bufio.ReadWriter, error) {
return nil, nil, fmt.Errorf("response writer does not implement Hijacker")
}
// Import http package
import "net/http"