Add Basic Websocket Server/Worker Connection

This commit is contained in:
speatzle 2024-04-26 18:33:49 +02:00
parent 01e34936e9
commit 9ac9ed8fe2
9 changed files with 218 additions and 7 deletions

9
server/index.go Normal file
View file

@ -0,0 +1,9 @@
package server
import (
"net/http"
)
func handleIndex(w http.ResponseWriter, r *http.Request) {
w.Write([]byte("Alive"))
}