mirror of https://github.com/siddontang/go.git
format with goimports
This commit is contained in:
parent
530a231625
commit
b151716326
|
@ -31,7 +31,6 @@ func (h *StreamHandler) Close() error {
|
|||
return nil
|
||||
}
|
||||
|
||||
|
||||
//NullHandler does nothing, it discards anything.
|
||||
type NullHandler struct {
|
||||
}
|
||||
|
|
|
@ -1,12 +1,13 @@
|
|||
package websocket
|
||||
|
||||
import (
|
||||
"github.com/gorilla/websocket"
|
||||
"net"
|
||||
"net/http"
|
||||
"net/url"
|
||||
"testing"
|
||||
"time"
|
||||
|
||||
"github.com/gorilla/websocket"
|
||||
)
|
||||
|
||||
func TestWSClient(t *testing.T) {
|
||||
|
|
|
@ -1,12 +1,13 @@
|
|||
package websocket
|
||||
|
||||
import (
|
||||
"github.com/gorilla/websocket"
|
||||
"net"
|
||||
"net/http"
|
||||
"net/url"
|
||||
"testing"
|
||||
"time"
|
||||
|
||||
"github.com/gorilla/websocket"
|
||||
)
|
||||
|
||||
func TestWSServer(t *testing.T) {
|
||||
|
|
Loading…
Reference in New Issue