feat(muxterm): PTY pool with attach, resize, cleanup

This commit is contained in:
Ken
2026-05-28 06:09:39 +00:00
parent ecc6c6979c
commit 3f0e31007f
5 changed files with 363 additions and 5 deletions
+8
View File
@@ -0,0 +1,8 @@
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)
}