Commit d643d8b
authored
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"
...
)
```
1 file changed
Lines changed: 2 additions & 0 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
6 | 6 | | |
7 | 7 | | |
8 | 8 | | |
| 9 | + | |
| 10 | + | |
9 | 11 | | |
10 | 12 | | |
11 | 13 | | |
| |||
0 commit comments