Skip to content

Commit a13118b

Browse files
Migrate this project to the vanity URL (#16)
1 parent 4d42064 commit a13118b

8 files changed

Lines changed: 28 additions & 28 deletions

File tree

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# log
22

33
[![License](https://img.shields.io/github/license/FollowTheProcess/log)](https://github.com/FollowTheProcess/log)
4-
[![Go Reference](https://pkg.go.dev/badge/github.com/FollowTheProcess/log.svg)](https://pkg.go.dev/github.com/FollowTheProcess/log)
4+
[![Go Reference](https://pkg.go.dev/badge/go.followtheprocess.codes/log.svg)](https://pkg.go.dev/go.followtheprocess.codes/log)
55
[![Go Report Card](https://goreportcard.com/badge/github.com/FollowTheProcess/log)](https://goreportcard.com/report/github.com/FollowTheProcess/log)
66
[![GitHub](https://img.shields.io/github/v/release/FollowTheProcess/log?logo=github&sort=semver)](https://github.com/FollowTheProcess/log)
77
[![CI](https://github.com/FollowTheProcess/log/workflows/CI/badge.svg)](https://github.com/FollowTheProcess/log/actions?query=workflow%3ACI)
@@ -23,7 +23,7 @@ use everywhere across all my Go projects (which are mostly command line applicat
2323
## Installation
2424

2525
```shell
26-
go get github.com/FollowTheProcess/log@latest
26+
go get go.followtheprocess.codes/log@latest
2727
```
2828

2929
## Quickstart
@@ -35,7 +35,7 @@ import (
3535
"fmt"
3636
"os"
3737

38-
"github.com/FollowTheProcess/log"
38+
"go.followtheprocess.codes/log"
3939
)
4040

4141
func main() {

examples/demo/main.go

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

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

1111
func main() {

examples/keys/main.go

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

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

1111
func main() {

examples/prefix/main.go

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

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

1111
func main() {

go.mod

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
1-
module github.com/FollowTheProcess/log
1+
module go.followtheprocess.codes/log
22

33
go 1.24
44

55
require (
6-
github.com/FollowTheProcess/hue v0.5.2
7-
github.com/FollowTheProcess/test v0.21.0
6+
go.followtheprocess.codes/hue v0.6.0
7+
go.followtheprocess.codes/test v0.22.0
88
)
99

1010
require (
11-
golang.org/x/sys v0.31.0 // indirect
12-
golang.org/x/term v0.30.0 // indirect
11+
golang.org/x/sys v0.33.0 // indirect
12+
golang.org/x/term v0.32.0 // indirect
1313
)

go.sum

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
1-
github.com/FollowTheProcess/hue v0.5.2 h1:Ns/vO8wiwv2oXDn+QyBLcYCK0LcfXVVu31bHGTLAFHI=
2-
github.com/FollowTheProcess/hue v0.5.2/go.mod h1:5FD2UrxTzWi0Uc63w8ndsjqPrH4xn3Q7k7vEpINqEP4=
3-
github.com/FollowTheProcess/snapshot v0.4.1 h1:WIwvs+yZrK9886frLbNB98QWkAXTjIGnuvEjURHOrtE=
4-
github.com/FollowTheProcess/snapshot v0.4.1/go.mod h1:hb3V3azvp8FVrl4pvyhvq/ZYOnFSgyKHfXt96Jgg4e0=
5-
github.com/FollowTheProcess/test v0.21.0 h1:8eljlAhdOusGXgEso8It6ymvk+Ua3MenNH3+4jp0+dY=
6-
github.com/FollowTheProcess/test v0.21.0/go.mod h1:3UQ3s3EsAuD9Hw5aekXIxssqhIx7kCTjw2lKtYb0uFo=
7-
golang.org/x/sys v0.31.0 h1:ioabZlmFYtWhL+TRYpcnNlLwhyxaM9kWTDEmfnprqik=
8-
golang.org/x/sys v0.31.0/go.mod h1:BJP2sWEmIv4KK5OTEluFJCKSidICx8ciO85XgH3Ak8k=
9-
golang.org/x/term v0.30.0 h1:PQ39fJZ+mfadBm0y5WlL4vlM7Sx1Hgf13sMIY2+QS9Y=
10-
golang.org/x/term v0.30.0/go.mod h1:NYYFdzHoI5wRh/h5tDMdMqCqPJZEuNqVR5xJLd/n67g=
11-
golang.org/x/tools v0.31.0 h1:0EedkvKDbh+qistFTd0Bcwe/YLh4vHwWEkiI0toFIBU=
12-
golang.org/x/tools v0.31.0/go.mod h1:naFTU+Cev749tSJRXJlna0T3WxKvb1kWEx15xA4SdmQ=
1+
go.followtheprocess.codes/hue v0.6.0 h1:JDLnRrkauCCIyYRqKNBDM+X6X5o75j2CG3iddnzIuhc=
2+
go.followtheprocess.codes/hue v0.6.0/go.mod h1:tNCWKaywHqkFo20hYOVwG7CaoRajJeE2AueP5HStY7U=
3+
go.followtheprocess.codes/snapshot v0.6.0 h1:aq7WIc8hInqdpdrOzntk9lqHwxUqSw3YbgLYaoy0laQ=
4+
go.followtheprocess.codes/snapshot v0.6.0/go.mod h1:0hskrLbmTgcv3h1YgVgX0CXiiOKq0UvhM4PewnOZOno=
5+
go.followtheprocess.codes/test v0.22.0 h1:erXLdEY/Kj0+gt5rNVtHzbJ+7g9l0JBNuzc7WtcFz00=
6+
go.followtheprocess.codes/test v0.22.0/go.mod h1:5xDKZUMZ125YgTPBxaAo2nioaSSk7dkfcTCyzsigWzE=
7+
golang.org/x/sys v0.33.0 h1:q3i8TbbEz+JRD9ywIRlyRAQbM0qF7hu24q3teo2hbuw=
8+
golang.org/x/sys v0.33.0/go.mod h1:BJP2sWEmIv4KK5OTEluFJCKSidICx8ciO85XgH3Ak8k=
9+
golang.org/x/term v0.32.0 h1:DR4lr0TjUs3epypdhTOkMmuF5CDFJ/8pOnbzMZPQ7bg=
10+
golang.org/x/term v0.32.0/go.mod h1:uZG1FhGx848Sqfsq4/DlJr3xGGsYMu/L5GW4abiaEPQ=
11+
golang.org/x/tools v0.34.0 h1:qIpSLOxeCYGg9TrcJokLBG4KFA6d795g0xkBkiESGlo=
12+
golang.org/x/tools v0.34.0/go.mod h1:pAP9OwEaY1CAW3HOmg3hLZC5Z0CCmzjAF2UQMSqNARg=

log.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
//
77
// log emphasis simplicity and efficiency so there aren't too many knobs to twiddle, you just get a consistent,
88
// easy to use, simple logger with minimal overhead.
9-
package log
9+
package log // import "go.followtheprocess.codes/log"
1010

1111
import (
1212
"bytes"
@@ -22,7 +22,7 @@ import (
2222
"unicode"
2323
"unicode/utf8"
2424

25-
"github.com/FollowTheProcess/hue"
25+
"go.followtheprocess.codes/hue"
2626
)
2727

2828
// Styles.

log_test.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,9 @@ import (
1111
"testing"
1212
"time"
1313

14-
"github.com/FollowTheProcess/hue"
15-
"github.com/FollowTheProcess/log"
16-
"github.com/FollowTheProcess/test"
14+
"go.followtheprocess.codes/hue"
15+
"go.followtheprocess.codes/log"
16+
"go.followtheprocess.codes/test"
1717
)
1818

1919
func TestVisual(t *testing.T) {

0 commit comments

Comments
 (0)