moved everything into pkg/

This commit is contained in:
2025-07-17 13:18:55 +01:00
parent affd6c1ebc
commit fc68bcf3cb
466 changed files with 1481 additions and 2119 deletions

View File

@@ -0,0 +1,11 @@
package relay
import (
"net/http"
"orly.dev/pkg/protocol/socketapi"
)
func (s *Server) handleWebsocket(w http.ResponseWriter, r *http.Request) {
a := &socketapi.A{I: s}
a.Serve(w, r, s)
}