This commit is contained in:
amutake 2014-12-30 05:41:51 +09:00
parent ecd9d69996
commit 66f13d9a83
1 changed files with 8 additions and 0 deletions

View File

@ -1,6 +1,7 @@
package main
import (
"flag"
"fmt"
"log"
"net/http"
@ -29,7 +30,14 @@ func handler(w http.ResponseWriter, r *http.Request) {
}
func main() {
port := ":5050"
flag.Parse()
if flag.NArg() != 0 {
port = ":" + flag.Arg(0)
}
http.HandleFunc("/", handler)
fmt.Println("spa-server starting on localhost" + port)
err := http.ListenAndServe(port, nil)