Skip to content

Commit d643d8b

Browse files
authored
Fix missing os and strings imports in unified server (#3599)
Lint CI was failing because `internal/server/unified.go` used `os.Getenv` and `strings.TrimSpace` without importing the corresponding packages. ## Change Added missing stdlib imports to `internal/server/unified.go`: ```go import ( ... "os" "strings" ... ) ```
2 parents cc6cfd1 + 401bf1b commit d643d8b

1 file changed

Lines changed: 2 additions & 0 deletions

File tree

internal/server/unified.go

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@ import (
66
"fmt"
77
"io"
88
"net/http"
9+
"os"
10+
"strings"
911
"sync"
1012
"time"
1113

0 commit comments

Comments
 (0)