Skip to content

Commit 018d971

Browse files
committed
Update go module path
1 parent 764cc02 commit 018d971

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

command.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import (
66
"fmt"
77
"strings"
88

9-
"github.com/mfridman/cli/pkg/suggest"
9+
"github.com/pressly/cli/pkg/suggest"
1010
)
1111

1212
// Command represents a CLI command or subcommand within the application's command hierarchy.

examples/cmd/echo/main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import (
88
"os"
99
"strings"
1010

11-
"github.com/mfridman/cli"
11+
"github.com/pressly/cli"
1212
)
1313

1414
func main() {

examples/cmd/task/main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ import (
1111
"strings"
1212
"time"
1313

14-
"github.com/mfridman/cli"
14+
"github.com/pressly/cli"
1515
)
1616

1717
// todo

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
module github.com/mfridman/cli
1+
module github.com/pressly/cli
22

33
go 1.21.0
44

usage.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import (
77
"slices"
88
"strings"
99

10-
"github.com/mfridman/cli/pkg/textutil"
10+
"github.com/pressly/cli/pkg/textutil"
1111
)
1212

1313
// DefaultUsage returns the default usage string for the command hierarchy. It is used when the

0 commit comments

Comments
 (0)