13 lines
249 B
Go
13 lines
249 B
Go
package ws
|
|
|
|
import (
|
|
"github.com/gorilla/websocket"
|
|
)
|
|
|
|
func WatchHandler(conn *websocket.Conn, r *http.Request) error {
|
|
// TODO: Implement resource watch streaming
|
|
// This will watch K8s resources and broadcast changes to clients
|
|
|
|
return nil
|
|
}
|