Handling command line arguments using flag package.

master
Tomasz Półgrabia 2022-01-16 17:32:20 +01:00
parent a2ae9772cd
commit 576d73339c
1 changed files with 5 additions and 12 deletions

View File

@ -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()