Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 4 additions & 3 deletions websocket/websocket.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,11 @@
// Package websocket implements a client and server for the WebSocket protocol
// as specified in RFC 6455.
//
// This package currently lacks some features found in an alternative
// and more actively maintained WebSocket package:
// This package is retired. It is stll around in order to avoid breaking
// existing projects, but it is not actively maintained.
// Use an alternative an more actively maintained WebSocket package instead:
//
// https://pkg.go.dev/nhooyr.io/websocket
// https://godoc.org/github.com/gorilla/websocket
package websocket // import "golang.org/x/net/websocket"

import (
Expand Down