Skip to content

Commit e727b1c

Browse files
Migrate this project to the vanity URL (#162)
1 parent fbf2487 commit e727b1c

19 files changed

Lines changed: 46 additions & 50 deletions

File tree

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ Tiny, simple, but powerful CLI framework for modern Go 🚀
4040
## Installation
4141

4242
```shell
43-
go get github.com/FollowTheProcess/cli@latest
43+
go get go.followtheprocess.codes/cli@latest
4444
```
4545

4646
## Quickstart
@@ -52,7 +52,7 @@ import (
5252
"fmt"
5353
"os"
5454

55-
"github.com/FollowTheProcess/cli"
55+
"go.followtheprocess.codes/cli"
5656
)
5757

5858
func main() {

args_test.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ import (
66
"slices"
77
"testing"
88

9-
"github.com/FollowTheProcess/cli"
10-
"github.com/FollowTheProcess/test"
9+
"go.followtheprocess.codes/cli"
10+
"go.followtheprocess.codes/test"
1111
)
1212

1313
func TestArgValidators(t *testing.T) {

command.go

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// Package cli provides a clean, minimal and simple mechanism for constructing CLI commands.
2-
package cli
2+
package cli // import "go.followtheprocess.codes/cli"
33

44
import (
55
"errors"
@@ -10,9 +10,9 @@ import (
1010
"strings"
1111
"unicode/utf8"
1212

13-
"github.com/FollowTheProcess/cli/internal/colour"
14-
"github.com/FollowTheProcess/cli/internal/flag"
15-
"github.com/FollowTheProcess/cli/internal/table"
13+
"go.followtheprocess.codes/cli/internal/colour"
14+
"go.followtheprocess.codes/cli/internal/flag"
15+
"go.followtheprocess.codes/cli/internal/table"
1616
)
1717

1818
const (

command_test.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@ import (
1010
"slices"
1111
"testing"
1212

13-
"github.com/FollowTheProcess/cli"
14-
"github.com/FollowTheProcess/snapshot"
15-
"github.com/FollowTheProcess/test"
13+
"go.followtheprocess.codes/cli"
14+
"go.followtheprocess.codes/snapshot"
15+
"go.followtheprocess.codes/test"
1616
)
1717

1818
var (

docs/img/demo.png

5.21 KB
Loading

docs/img/namedargs.gif

2.59 KB
Loading

docs/img/quickstart.gif

5.61 KB
Loading

docs/img/subcommands.gif

16.5 KB
Loading

examples/cover/main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import (
55
"log"
66
"os"
77

8-
"github.com/FollowTheProcess/cli"
8+
"go.followtheprocess.codes/cli"
99
)
1010

1111
func main() {

examples/namedargs/main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import (
44
"fmt"
55
"os"
66

7-
"github.com/FollowTheProcess/cli"
7+
"go.followtheprocess.codes/cli"
88
)
99

1010
func main() {

0 commit comments

Comments
 (0)