9 lines
261 B
Go
9 lines
261 B
Go
package main
|
|
|
|
import "net/http"
|
|
|
|
// HandleWebSocket is a placeholder that will be replaced in a later task.
|
|
func HandleWebSocket(pool *Pool, secret string, w http.ResponseWriter, r *http.Request) {
|
|
http.Error(w, "not implemented", http.StatusNotImplemented)
|
|
}
|