aboutsummaryrefslogtreecommitdiff
path: root/client.go
diff options
context:
space:
mode:
Diffstat (limited to 'client.go')
-rw-r--r--client.go5
1 files changed, 3 insertions, 2 deletions
diff --git a/client.go b/client.go
index 704700e..b4323d3 100644
--- a/client.go
+++ b/client.go
@@ -3,8 +3,6 @@ package main
import (
"database/sql"
"fmt"
- "github.com/gofiber/fiber/v2"
- _ "github.com/lib/pq"
"html/template"
"log"
"net/http"
@@ -13,6 +11,9 @@ import (
"strconv"
"strings"
"time"
+
+ "github.com/gofiber/fiber/v2"
+ _ "github.com/lib/pq"
)
var Key *string = new(string)