Skip to content
This repository was archived by the owner on Oct 17, 2021. It is now read-only.

Replace flag imports with spf13/pflag in README. #11

Merged
merged 1 commit into from
Jul 1, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,9 @@ See `examples/` for more.
package main

import (
"flag"
"fmt"

"github.com/spf13/pflag"
"go.coder.com/cli"
)

Expand Down Expand Up @@ -78,9 +78,9 @@ simple-example flags:
package main

import (
"flag"
"fmt"

"github.com/spf13/pflag"
"go.coder.com/cli"
)

Expand Down Expand Up @@ -135,4 +135,4 @@ This is a simple example of subcommands.

Commands:
sub This is a simple subcommand.
```
```