Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-pages.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNick Thomas <nick@gitlab.com>2017-09-22 15:52:48 +0300
committerNick Thomas <nick@gitlab.com>2017-09-22 18:14:59 +0300
commit4ee1f7022ce38ebeef6a1e8830b7b3a34c027ca9 (patch)
tree2429d65ca0afaa268f4d3a43edeba1dd068b8c22 /server.go
parent550eecbcdc65ade834311629f5cac9d0d2387e62 (diff)
Fix Go imports
Diffstat (limited to 'server.go')
-rw-r--r--server.go3
1 files changed, 2 insertions, 1 deletions
diff --git a/server.go b/server.go
index cfc1dbb9..cfd6b993 100644
--- a/server.go
+++ b/server.go
@@ -3,11 +3,12 @@ package main
import (
"crypto/tls"
"fmt"
- "golang.org/x/net/http2"
"net"
"net/http"
"os"
"time"
+
+ "golang.org/x/net/http2"
)
type tlsHandlerFunc func(*tls.ClientHelloInfo) (*tls.Certificate, error)