Formatting, long options

This commit is contained in:
Neale Pickett 2023-04-02 09:31:07 -06:00
parent 81bb79e8de
commit 1807f374ca
1 changed files with 14 additions and 14 deletions

View File

@ -2,10 +2,11 @@ package main
import ( import (
"flag" "flag"
"golang.org/x/net/webdav"
"log" "log"
"net/http" "net/http"
"strings" "strings"
"golang.org/x/net/webdav"
) )
type Handler struct { type Handler struct {
@ -22,10 +23,9 @@ func (h *Handler)ServeHTTP(w http.ResponseWriter, r *http.Request) {
h.Handler.ServeHTTP(w, r) h.Handler.ServeHTTP(w, r)
} }
func main() { func main() {
address := flag.String("a", ":8080", "Address to listen to") address := flag.String("listen", ":8080", "Address to listen to")
directory := flag.String("d", ".", "Directory to serve") directory := flag.String("root", ".", "Directory to serve")
flag.Parse() flag.Parse()
handler := &Handler{} handler := &Handler{}