William Wiechorek 6 years ago
commit
214154dddd
2 changed files with 21 additions and 0 deletions
  1. 4 0
      config.go
  2. 17 0
      main.go

+ 4 - 0
config.go

@@ -0,0 +1,4 @@
1
+package main
2
+
3
+//ServerPort para escuta do servidor
4
+const ServerPort = 8080

+ 17 - 0
main.go

@@ -0,0 +1,17 @@
1
+package main
2
+
3
+import (
4
+	"fmt"
5
+	"html"
6
+	"log"
7
+	"net/http"
8
+	"strconv"
9
+)
10
+
11
+func main() {
12
+	http.HandleFunc("/", func(w http.ResponseWriter, r *http.Request) {
13
+		fmt.Fprintf(w, "Hello, %q", html.EscapeString(r.URL.Path))
14
+	})
15
+
16
+	log.Fatal(http.ListenAndServe(":"+strconv.Itoa(ServerPort), nil))
17
+}