summaryrefslogtreecommitdiff
path: root/config.go
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2024-01-18 01:33:07 -0600
committerJeff Carr <[email protected]>2024-01-18 01:33:07 -0600
commit0659d10509ab24936be08a515a851017e6280d7d (patch)
tree46d12360596807b6174354d4142143899475de5e /config.go
parentcbb54585e2cd7f48ed0eeb60cf7b14bde85bfaa5 (diff)
fix pathsv0.1.1
Signed-off-by: Jeff Carr <[email protected]>
Diffstat (limited to 'config.go')
-rw-r--r--config.go10
1 files changed, 5 insertions, 5 deletions
diff --git a/config.go b/config.go
index 0069def..fae4988 100644
--- a/config.go
+++ b/config.go
@@ -1,12 +1,12 @@
package main
-import (
- "os"
- "log"
+import (
"bufio"
+ "log"
+ "os"
"strings"
- "go.wit.com/gui/cloudflare"
+ "go.wit.com/lib/gui/cloudflare"
)
var configfile string = ".config/wit/cloudflare"
@@ -49,7 +49,7 @@ func readFileLineByLine(filename string) error {
line := scanner.Text()
parts := strings.Fields(line)
- if (len(parts) < 4) {
+ if len(parts) < 4 {
log.Println("readFileLineByLine() SKIP =", parts)
continue
}