Re-order imports on the main.go - visual studio reordered automatically on save

This commit is contained in:
Chloe Jung 2023-02-24 09:14:18 +13:00
parent 484dd75c44
commit 715f01d161

View file

@ -1,15 +1,14 @@
package main package main
import ( import (
"net/http"
"time"
"github.com/boltcard/boltcard/db" "github.com/boltcard/boltcard/db"
"github.com/boltcard/boltcard/internalapi" "github.com/boltcard/boltcard/internalapi"
"github.com/boltcard/boltcard/lnurlp" "github.com/boltcard/boltcard/lnurlp"
"github.com/boltcard/boltcard/lnurlw" "github.com/boltcard/boltcard/lnurlw"
"github.com/gorilla/mux" "github.com/gorilla/mux"
log "github.com/sirupsen/logrus" log "github.com/sirupsen/logrus"
"net/http"
"time"
) )
var router = mux.NewRouter() var router = mux.NewRouter()