diff --git a/main.go b/main.go index f860b3e..3bbf19d 100644 --- a/main.go +++ b/main.go @@ -6,7 +6,6 @@ import ( "log" "net/http" - "github.com/quic-go/quic-go/http3" "github.com/quic-go/webtransport-go" ) @@ -29,12 +28,12 @@ func main() { go handleChatSession(session) }) - server := http3.Server{ + server := &http.Server{ Addr: ":8080", Handler: mux, } - fmt.Println("HTTP/3 server started") + fmt.Println("Server started") log.Fatal(server.ListenAndServe()) }