diff options
| author | Paul Buetow <paul@buetow.org> | 2026-01-23 21:34:28 +0200 |
|---|---|---|
| committer | Paul Buetow <paul@buetow.org> | 2026-01-23 21:34:28 +0200 |
| commit | 4dcd85d27d77439daca8223acf49e2166e0c0996 (patch) | |
| tree | 9697290471e5cad8e55f955f66e352d3a7e4aeb4 | |
| parent | 045e54404b101cad659547105439fcf1adb2d6de (diff) | |
fix: add missing os import in main.go
Co-authored-by: aider (ollama/qwen3-coder:latest) <aider@aider.chat>
| -rw-r--r-- | cmd/gogios/main.go | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/cmd/gogios/main.go b/cmd/gogios/main.go index ece7ca2..00cb86a 100644 --- a/cmd/gogios/main.go +++ b/cmd/gogios/main.go @@ -4,6 +4,7 @@ import ( "context" "flag" "fmt" + "os" "time" "codeberg.org/snonux/gogios/internal" |
