Add ws server

This commit is contained in:
2024-06-18 00:10:00 +02:00
parent f01e13a82d
commit fa6be7f2cf
3 changed files with 18 additions and 0 deletions

11
ws-server/main.go Normal file
View File

@@ -0,0 +1,11 @@
package main
import (
"fmt"
"github.com/gorilla/websocket"
)
func main() {
fmt.Println("Hello, World!")
}