fix(lint): remove redundant context type in compact outcome logger

This commit is contained in:
程序猿MT
2026-03-05 16:51:46 +08:00
parent bfe7a5e452
commit 61e9598b08

View File

@@ -358,7 +358,7 @@ func (h *OpenAIGatewayHandler) logOpenAIRemoteCompactOutcome(c *gin.Context, sta
} }
var ( var (
ctx context.Context = context.Background() ctx = context.Background()
path string path string
status int status int
) )