diff --git a/examples/chat/main.go b/examples/chat/main.go index a865ffe..d08f895 100644 --- a/examples/chat/main.go +++ b/examples/chat/main.go @@ -6,9 +6,9 @@ package main import ( "flag" + "html/template" "log" "net/http" - "text/template" ) var addr = flag.String("addr", ":8080", "http service address") diff --git a/examples/command/main.go b/examples/command/main.go index 438fb83..4c67858 100644 --- a/examples/command/main.go +++ b/examples/command/main.go @@ -7,12 +7,12 @@ package main import ( "bufio" "flag" + "html/template" "io" "log" "net/http" "os" "os/exec" - "text/template" "time" "github.com/gorilla/websocket" diff --git a/examples/filewatch/main.go b/examples/filewatch/main.go index 2ac2b32..f5f9da5 100644 --- a/examples/filewatch/main.go +++ b/examples/filewatch/main.go @@ -6,12 +6,12 @@ package main import ( "flag" + "html/template" "io/ioutil" "log" "net/http" "os" "strconv" - "text/template" "time" "github.com/gorilla/websocket"