Run go fmt

It has some Opinions on my code. Mostly whitespace and organizing the ordering of my structs.
This commit is contained in:
diff 2021-03-25 19:22:41 +00:00
parent bbdc5325ae
commit cc4913d573

18
main.go
View File

@ -18,21 +18,21 @@
package main package main
import ( import (
"net"
"net/url"
"net/http"
"time"
"context" "context"
"html/template" "html/template"
"net"
"net/http"
"net/url"
"time"
"path"
"os"
"mime/multipart"
"io" "io"
"mime/multipart"
"os"
"path"
"fmt"
"flag"
"errors" "errors"
"flag"
"fmt"
"github.com/mdp/qrterminal" "github.com/mdp/qrterminal"
) )