fix: go vet errors in observability metrics

- 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 15:14:13 +09:00
parent e5a1f052a4
commit 94c0cf6fe6
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"