Updated module path

This commit is contained in:
Eduard Urbach 2025-02-25 16:37:15 +01:00
parent 1ef7d85db5
commit 1b0b4cb28f
Signed by: akyoto
GPG Key ID: C874F672B1AF20C0
11 changed files with 17 additions and 17 deletions

View File

@ -3,7 +3,7 @@ package color_test
import ( import (
"testing" "testing"
"git.akyoto.dev/go/color" "git.urbach.dev/go/color"
) )
func BenchmarkRGB(b *testing.B) { func BenchmarkRGB(b *testing.B) {

View File

@ -3,7 +3,7 @@ package color_test
import ( import (
"testing" "testing"
"git.akyoto.dev/go/color" "git.urbach.dev/go/color"
) )
func TestPrint(t *testing.T) { func TestPrint(t *testing.T) {

View File

@ -4,7 +4,7 @@ import (
"fmt" "fmt"
"testing" "testing"
"git.akyoto.dev/go/color" "git.urbach.dev/go/color"
) )
func TestLCH(t *testing.T) { func TestLCH(t *testing.T) {

View File

@ -11,7 +11,7 @@ Adds color to your terminal output.
## Installation ## Installation
```shell ```shell
go get git.akyoto.dev/go/color go get git.urbach.dev/go/color
``` ```
## Usage ## Usage
@ -52,7 +52,7 @@ BenchmarkPrintRaw-12 3105022 387.3 ns/op 0
## License ## License
Please see the [license documentation](https://akyoto.dev/license). Please see the [license documentation](https://urbach.dev/license).
## Copyright ## Copyright

View File

@ -3,8 +3,8 @@ package color_test
import ( import (
"testing" "testing"
"git.akyoto.dev/go/assert" "git.urbach.dev/go/assert"
"git.akyoto.dev/go/color" "git.urbach.dev/go/color"
) )
func TestRGB(t *testing.T) { func TestRGB(t *testing.T) {

View File

@ -3,7 +3,7 @@ package color
import ( import (
"os" "os"
"git.akyoto.dev/go/color/tty" "git.urbach.dev/go/color/tty"
) )
// Terminal indicates if we're in a terminal with truecolor support. // Terminal indicates if we're in a terminal with truecolor support.

View File

@ -3,7 +3,7 @@ package ansi
import ( import (
"fmt" "fmt"
"git.akyoto.dev/go/color" "git.urbach.dev/go/color"
) )
// Code represents an ANSI escape code. // Code represents an ANSI escape code.

View File

@ -3,8 +3,8 @@ package ansi_test
import ( import (
"testing" "testing"
"git.akyoto.dev/go/color" "git.urbach.dev/go/color"
"git.akyoto.dev/go/color/ansi" "git.urbach.dev/go/color/ansi"
) )
func TestPrintRaw(t *testing.T) { func TestPrintRaw(t *testing.T) {

6
go.mod
View File

@ -1,8 +1,8 @@
module git.akyoto.dev/go/color module git.urbach.dev/go/color
go 1.22.0 go 1.24
require ( 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 golang.org/x/sys v0.30.0
) )

4
go.sum
View File

@ -1,4 +1,4 @@
git.akyoto.dev/go/assert v0.1.3 h1:QwCUbmG4aZYsNk/OuRBz1zWVKmGlDUHhOnnDBfn8Qw8= git.urbach.dev/go/assert v0.0.0-20250225153414-fc1f84f19edf h1:BQWa5GKNUsA5CSUa/+UlFWYCEVe3IDDKRbVqBLK0mAE=
git.akyoto.dev/go/assert v0.1.3/go.mod h1:0GzMaM0eURuDwtGkJJkCsI7r2aUKr+5GmWNTFPgDocM= 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 h1:QjkSwP/36a20jFYWkSue1YwXzLmsV5Gfq7Eiy72C1uc=
golang.org/x/sys v0.30.0/go.mod h1:/VUhepiaJMQUp4+oa/7Zr1D23ma6VTLIYjOOTFZPUcA= golang.org/x/sys v0.30.0/go.mod h1:/VUhepiaJMQUp4+oa/7Zr1D23ma6VTLIYjOOTFZPUcA=

View File

@ -4,7 +4,7 @@ import (
"os" "os"
"testing" "testing"
"git.akyoto.dev/go/color/tty" "git.urbach.dev/go/color/tty"
) )
func TestIsTerminal(t *testing.T) { func TestIsTerminal(t *testing.T) {