Add missing "fmt" import in example

This commit is contained in:
Dan Buch 2022-04-20 14:45:04 -04:00
parent 8c33a078d1
commit 5c6ccfb097
Signed by: meatballhat
GPG Key ID: A12F782281063434
2 changed files with 3 additions and 0 deletions

1
.gitignore vendored
View File

@ -5,5 +5,6 @@ vendor
.idea
internal/*/built-example
coverage.txt
/.local/
*.exe

View File

@ -674,8 +674,10 @@ Take for example this app that requires the `lang` flag:
package main
import (
"fmt"
"log"
"os"
"github.com/urfave/cli/v2"
)