adding go-hello for ch5 lab
This commit is contained in:
parent
05a50b0671
commit
9fd8a3b97a
1 changed files with 30 additions and 0 deletions
30
go-hello/app.go
Normal file
30
go-hello/app.go
Normal file
|
|
@ -0,0 +1,30 @@
|
|||
package main
|
||||
|
||||
import (
|
||||
"net/http"
|
||||
"flag"
|
||||
"fmt"
|
||||
)
|
||||
|
||||
var lang = flag.String("lang", "en", "run app with language support - default is english")
|
||||
|
||||
func main() {
|
||||
var port = "8080"
|
||||
http.HandleFunc("/", rootHandler)
|
||||
fmt.Printf("Starting server on port %v...\n", port)
|
||||
http.ListenAndServe(":"+port, nil)
|
||||
}
|
||||
|
||||
func rootHandler(response http.ResponseWriter, request *http.Request) {
|
||||
|
||||
flag.Parse()
|
||||
|
||||
switch *lang {
|
||||
case "en":
|
||||
fmt.Fprintf(response, "Hello %s!. Welcome!\n", request.URL.Path[1:])
|
||||
case "es":
|
||||
fmt.Fprintf(response, "Hola %s!. Bienvenido!\n", request.URL.Path[1:])
|
||||
default:
|
||||
fmt.Fprintf(response, "Error! unknown lang option -> %s\n", *lang)
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Reference in a new issue