-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.go
54 lines (41 loc) · 1.12 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
47
48
49
50
51
52
53
54
package main
import (
"fmt"
"net/http"
)
func main() {
finish := make(chan bool)
server8001 := http.NewServeMux()
server8001.HandleFunc("/", default8001)
server8001.HandleFunc("/foo", foo8001)
server8001.HandleFunc("/bar", bar8001)
server8002 := http.NewServeMux()
server8002.HandleFunc("/", default8002)
server8002.HandleFunc("/foo", foo8002)
server8002.HandleFunc("/bar", bar8002)
go func() {
http.ListenAndServe(":8001", server8001)
}()
go func() {
http.ListenAndServe(":8002", server8002)
}()
<-finish
}
func default8001(w http.ResponseWriter, r *http.Request) {
fmt.Fprintln(w, "Listening on 8001")
}
func foo8001(w http.ResponseWriter, r *http.Request) {
fmt.Fprintln(w, "Listening on 8001: foo ")
}
func bar8001(w http.ResponseWriter, r *http.Request) {
fmt.Fprintln(w, "Listening on 8001: bar ")
}
func default8002(w http.ResponseWriter, r *http.Request) {
fmt.Fprintln(w, "Listening on 8002")
}
func foo8002(w http.ResponseWriter, r *http.Request) {
fmt.Fprintln(w, "Listening on 8002: foo ")
}
func bar8002(w http.ResponseWriter, r *http.Request) {
fmt.Fprintln(w, "Listening on 8002: bar ")
}