Re-order imports on the main.go - visual studio reordered automatically on save
This commit is contained in:
parent
484dd75c44
commit
715f01d161
1 changed files with 2 additions and 3 deletions
5
main.go
5
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()
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue