From 715f01d1617f808c17f30ba505baef70a3851c45 Mon Sep 17 00:00:00 2001 From: Chloe Jung Date: Fri, 24 Feb 2023 09:14:18 +1300 Subject: [PATCH] Re-order imports on the main.go - visual studio reordered automatically on save --- main.go | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/main.go b/main.go index 7464ea1..4390985 100644 --- a/main.go +++ b/main.go @@ -1,15 +1,14 @@ package main import ( - "net/http" - "time" - "github.com/boltcard/boltcard/db" "github.com/boltcard/boltcard/internalapi" "github.com/boltcard/boltcard/lnurlp" "github.com/boltcard/boltcard/lnurlw" "github.com/gorilla/mux" log "github.com/sirupsen/logrus" + "net/http" + "time" ) var router = mux.NewRouter()