-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.go
46 lines (35 loc) · 1.06 KB
/
main.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
package main
import (
"fmt"
"log"
"net/http"
)
func helloHandler(w http.ResponseWriter, r *http.Request) {
if r.URL.Path != "/hello" {
http.Error(w, "404 path not found", http.StatusNotFound)
return
}
if r.Method != "GET" {
http.Error(w, "Method not supported", http.StatusNotFound)
}
fmt.Fprintf(w, "Hey there, this is Aditya's simple go server!")
}
func formHandler(w http.ResponseWriter, r *http.Request) {
if err := r.ParseForm(); err != nil {
fmt.Fprintf(w, "Unable to parse form, try again later")
}
name := r.Form["name"]
nickname := r.Form["nickname"]
fmt.Fprintf(w, "Hey %v, %v could be a really great nickname for you!", name, nickname)
}
func main() {
fmt.Println("System alive...")
fileServer := http.FileServer(http.Dir("./static"))
http.Handle("/", fileServer)
http.HandleFunc("/hello", helloHandler)
http.HandleFunc("/form", formHandler)
fmt.Println("listening on port 8000")
if err := http.ListenAndServe("localhost:8000", nil); err != nil {
log.Fatal("I might be away for now, but I will be back alive better than ever...")
}
}