Add fmt import

This commit is contained in:
Naveen Gogineni 2022-10-23 16:00:15 -04:00
parent 31487e73a3
commit 9d0fdbe289

View File

@ -612,6 +612,7 @@ package main
import (
"log"
"os"
"fmt"
"github.com/urfave/cli/v2"
)
@ -628,6 +629,7 @@ func main() {
if v >= 65536 {
return fmt.Errorf("Flag port value %v out of range[0-65535]", v)
}
return nil
},
},
},