From f21f0ad727926016bc939a5b462b960160908471 Mon Sep 17 00:00:00 2001 From: Chris Mann Date: Fri, 21 Jul 2023 06:25:19 +0200 Subject: [PATCH] Refactoring into login.go and config.go --- config.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/config.go b/config.go index c931b54..0f77f10 100644 --- a/config.go +++ b/config.go @@ -4,7 +4,9 @@ config handles reading the config.json file at the root and processing the setti package main import ( + "encoding/json" "flag" + "io/ioutil" "log" "os" )