Handling command line arguments using flag package.
parent
a2ae9772cd
commit
576d73339c
|
@ -2,11 +2,11 @@ package main
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"encoding/json"
|
"encoding/json"
|
||||||
|
"flag"
|
||||||
"fmt"
|
"fmt"
|
||||||
"github.com/gorilla/mux"
|
"github.com/gorilla/mux"
|
||||||
"net/http"
|
"net/http"
|
||||||
"os"
|
"os"
|
||||||
"strconv"
|
|
||||||
)
|
)
|
||||||
|
|
||||||
type StandardResponse struct {
|
type StandardResponse struct {
|
||||||
|
@ -96,17 +96,10 @@ func handleDefault(writer http.ResponseWriter, _ *http.Request) {
|
||||||
}
|
}
|
||||||
|
|
||||||
func main() {
|
func main() {
|
||||||
args := os.Args
|
var port int
|
||||||
|
flag.IntVar(&port, "p", 8080, "Server port")
|
||||||
var port = 8080
|
flag.IntVar(&port, "port", 8080, "Server port")
|
||||||
if len(args) >= 2 {
|
flag.Parse()
|
||||||
p, err := strconv.Atoi(args[1])
|
|
||||||
if err != nil {
|
|
||||||
panic(fmt.Errorf("there was a conversion error for port number %v", err))
|
|
||||||
return
|
|
||||||
}
|
|
||||||
port = p
|
|
||||||
}
|
|
||||||
|
|
||||||
fmt.Printf("Starting new server on port %v...", port)
|
fmt.Printf("Starting new server on port %v...", port)
|
||||||
r := mux.NewRouter()
|
r := mux.NewRouter()
|
||||||
|
|
Loading…
Reference in New Issue