Updated module path
This commit is contained in:
parent
1ef7d85db5
commit
1b0b4cb28f
@ -3,7 +3,7 @@ package color_test
|
||||
import (
|
||||
"testing"
|
||||
|
||||
"git.akyoto.dev/go/color"
|
||||
"git.urbach.dev/go/color"
|
||||
)
|
||||
|
||||
func BenchmarkRGB(b *testing.B) {
|
||||
|
@ -3,7 +3,7 @@ package color_test
|
||||
import (
|
||||
"testing"
|
||||
|
||||
"git.akyoto.dev/go/color"
|
||||
"git.urbach.dev/go/color"
|
||||
)
|
||||
|
||||
func TestPrint(t *testing.T) {
|
||||
|
@ -4,7 +4,7 @@ import (
|
||||
"fmt"
|
||||
"testing"
|
||||
|
||||
"git.akyoto.dev/go/color"
|
||||
"git.urbach.dev/go/color"
|
||||
)
|
||||
|
||||
func TestLCH(t *testing.T) {
|
||||
|
@ -11,7 +11,7 @@ Adds color to your terminal output.
|
||||
## Installation
|
||||
|
||||
```shell
|
||||
go get git.akyoto.dev/go/color
|
||||
go get git.urbach.dev/go/color
|
||||
```
|
||||
|
||||
## Usage
|
||||
@ -52,7 +52,7 @@ BenchmarkPrintRaw-12 3105022 387.3 ns/op 0
|
||||
|
||||
## License
|
||||
|
||||
Please see the [license documentation](https://akyoto.dev/license).
|
||||
Please see the [license documentation](https://urbach.dev/license).
|
||||
|
||||
## Copyright
|
||||
|
||||
|
@ -3,8 +3,8 @@ package color_test
|
||||
import (
|
||||
"testing"
|
||||
|
||||
"git.akyoto.dev/go/assert"
|
||||
"git.akyoto.dev/go/color"
|
||||
"git.urbach.dev/go/assert"
|
||||
"git.urbach.dev/go/color"
|
||||
)
|
||||
|
||||
func TestRGB(t *testing.T) {
|
||||
|
@ -3,7 +3,7 @@ package color
|
||||
import (
|
||||
"os"
|
||||
|
||||
"git.akyoto.dev/go/color/tty"
|
||||
"git.urbach.dev/go/color/tty"
|
||||
)
|
||||
|
||||
// Terminal indicates if we're in a terminal with truecolor support.
|
||||
|
@ -3,7 +3,7 @@ package ansi
|
||||
import (
|
||||
"fmt"
|
||||
|
||||
"git.akyoto.dev/go/color"
|
||||
"git.urbach.dev/go/color"
|
||||
)
|
||||
|
||||
// Code represents an ANSI escape code.
|
||||
|
@ -3,8 +3,8 @@ package ansi_test
|
||||
import (
|
||||
"testing"
|
||||
|
||||
"git.akyoto.dev/go/color"
|
||||
"git.akyoto.dev/go/color/ansi"
|
||||
"git.urbach.dev/go/color"
|
||||
"git.urbach.dev/go/color/ansi"
|
||||
)
|
||||
|
||||
func TestPrintRaw(t *testing.T) {
|
||||
|
6
go.mod
6
go.mod
@ -1,8 +1,8 @@
|
||||
module git.akyoto.dev/go/color
|
||||
module git.urbach.dev/go/color
|
||||
|
||||
go 1.22.0
|
||||
go 1.24
|
||||
|
||||
require (
|
||||
git.akyoto.dev/go/assert v0.1.3
|
||||
git.urbach.dev/go/assert v0.0.0-20250225153414-fc1f84f19edf
|
||||
golang.org/x/sys v0.30.0
|
||||
)
|
||||
|
4
go.sum
4
go.sum
@ -1,4 +1,4 @@
|
||||
git.akyoto.dev/go/assert v0.1.3 h1:QwCUbmG4aZYsNk/OuRBz1zWVKmGlDUHhOnnDBfn8Qw8=
|
||||
git.akyoto.dev/go/assert v0.1.3/go.mod h1:0GzMaM0eURuDwtGkJJkCsI7r2aUKr+5GmWNTFPgDocM=
|
||||
git.urbach.dev/go/assert v0.0.0-20250225153414-fc1f84f19edf h1:BQWa5GKNUsA5CSUa/+UlFWYCEVe3IDDKRbVqBLK0mAE=
|
||||
git.urbach.dev/go/assert v0.0.0-20250225153414-fc1f84f19edf/go.mod h1:y9jGII9JFiF1HNIju0u87OyPCt82xKCtqnAFyEreCDo=
|
||||
golang.org/x/sys v0.30.0 h1:QjkSwP/36a20jFYWkSue1YwXzLmsV5Gfq7Eiy72C1uc=
|
||||
golang.org/x/sys v0.30.0/go.mod h1:/VUhepiaJMQUp4+oa/7Zr1D23ma6VTLIYjOOTFZPUcA=
|
||||
|
@ -4,7 +4,7 @@ import (
|
||||
"os"
|
||||
"testing"
|
||||
|
||||
"git.akyoto.dev/go/color/tty"
|
||||
"git.urbach.dev/go/color/tty"
|
||||
)
|
||||
|
||||
func TestIsTerminal(t *testing.T) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user