summaryrefslogtreecommitdiff
path: root/main.go
diff options
context:
space:
mode:
Diffstat (limited to 'main.go')
-rw-r--r--main.go6
1 files changed, 3 insertions, 3 deletions
diff --git a/main.go b/main.go
index 2b29286..6a16cd2 100644
--- a/main.go
+++ b/main.go
@@ -3,18 +3,18 @@ package main
import (
_ "embed"
"log"
+ "net/http"
"os"
"os/signal"
"syscall"
- "net/http"
"time"
"github.com/gorilla/mux"
)
const (
- Addr = "127.0.0.1:8000"
- ReadTimeout = 15 * time.Second
+ Addr = "127.0.0.1:8000"
+ ReadTimeout = 15 * time.Second
WriteTimeout = 15 * time.Second
)