This commit is contained in:
2021-11-15 20:06:05 -03:00
commit 217325edf0
12 changed files with 653 additions and 0 deletions
+14
View File
@@ -0,0 +1,14 @@
package main
import (
"net/http"
"simplemq/lib/server"
)
func main() {
server.Serve()
err := http.ListenAndServe(":8080", nil)
if err != nil {
panic(err)
}
}