Skip to content

Commit

Permalink
Change domain reference (see yznts/kyoto#170)
Browse files Browse the repository at this point in the history
  • Loading branch information
yznts committed Oct 14, 2024
1 parent 29c6e04 commit cfccca9
Show file tree
Hide file tree
Showing 29 changed files with 32 additions and 37 deletions.
5 changes: 0 additions & 5 deletions Makefile

This file was deleted.

2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
</p>

```go
import "go.kyoto.codes/zen/v3"
import "github.com/yznts/zen/v3"
```

It's a common situation when simple things drive you crazy like missing ternary operator, atomic operations that take at least 3 lines, dealing with complex loops due to missing map/filter, or having to deal with goroutines and synchronization even for simple things.
Expand Down
2 changes: 1 addition & 1 deletion agg/avg.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package agg

import (
"go.kyoto.codes/zen/v3/mathx"
"github.com/yznts/zen/v3/mathx"
"golang.org/x/exp/constraints"
)

Expand Down
2 changes: 1 addition & 1 deletion b64/bytes.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package b64
import (
"encoding/base64"

"go.kyoto.codes/zen/v3/errorsx"
"github.com/yznts/zen/v3/errorsx"
)

/*
Expand Down
2 changes: 1 addition & 1 deletion b64/string.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package b64
import (
"encoding/base64"

"go.kyoto.codes/zen/v3/errorsx"
"github.com/yznts/zen/v3/errorsx"
)

/*
Expand Down
4 changes: 2 additions & 2 deletions conv/map.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ package conv
import (
"encoding/json"

"go.kyoto.codes/zen/v3/errorsx"
"go.kyoto.codes/zen/v3/jsonx"
"github.com/yznts/zen/v3/errorsx"
"github.com/yznts/zen/v3/jsonx"
)

/*
Expand Down
2 changes: 1 addition & 1 deletion fmtx/number.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package fmtx

import (
"go.kyoto.codes/zen/v3/conv"
"github.com/yznts/zen/v3/conv"
"golang.org/x/text/language"
"golang.org/x/text/message"
)
Expand Down
2 changes: 1 addition & 1 deletion fmtx/numeral.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package fmtx
import (
"fmt"

"go.kyoto.codes/zen/v3/conv"
"github.com/yznts/zen/v3/conv"
)

/*
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module go.kyoto.codes/zen/v3
module github.com/yznts/zen/v3

go 1.18

Expand Down
8 changes: 4 additions & 4 deletions httpx/request.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,10 @@ import (
"net/url"
"strings"

"go.kyoto.codes/zen/v3/async"
"go.kyoto.codes/zen/v3/conv"
"go.kyoto.codes/zen/v3/errorsx"
"go.kyoto.codes/zen/v3/jsonx"
"github.com/yznts/zen/v3/async"
"github.com/yznts/zen/v3/conv"
"github.com/yznts/zen/v3/errorsx"
"github.com/yznts/zen/v3/jsonx"
)

/*
Expand Down
2 changes: 1 addition & 1 deletion httpx/response.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import (
"net/http/httputil"
"strings"

"go.kyoto.codes/zen/v3/errorsx"
"github.com/yznts/zen/v3/errorsx"
)

/*
Expand Down
2 changes: 1 addition & 1 deletion jsonx/bytes.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package jsonx
import (
"encoding/json"

"go.kyoto.codes/zen/v3/errorsx"
"github.com/yznts/zen/v3/errorsx"
)

/*
Expand Down
2 changes: 1 addition & 1 deletion jsonx/map.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package jsonx
import (
"encoding/json"

"go.kyoto.codes/zen/v3/errorsx"
"github.com/yznts/zen/v3/errorsx"
)

/*
Expand Down
2 changes: 1 addition & 1 deletion jsonx/string.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package jsonx
import (
"encoding/json"

"go.kyoto.codes/zen/v3/errorsx"
"github.com/yznts/zen/v3/errorsx"
)

/*
Expand Down
2 changes: 1 addition & 1 deletion mapx/keep.go
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package mapx

import "go.kyoto.codes/zen/v3/slice"
import "github.com/yznts/zen/v3/slice"

/*
Keep reverses logic of mapx.Delete.
Expand Down
2 changes: 1 addition & 1 deletion mathx/div.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
package mathx

import (
"go.kyoto.codes/zen/v3/cast"
"github.com/yznts/zen/v3/cast"
"golang.org/x/exp/constraints"
)

Expand Down
2 changes: 1 addition & 1 deletion mathx/mul.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
package mathx

import (
"go.kyoto.codes/zen/v3/cast"
"github.com/yznts/zen/v3/cast"
"golang.org/x/exp/constraints"
)

Expand Down
2 changes: 1 addition & 1 deletion mathx/sub.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
package mathx

import (
"go.kyoto.codes/zen/v3/cast"
"github.com/yznts/zen/v3/cast"
"golang.org/x/exp/constraints"
)

Expand Down
2 changes: 1 addition & 1 deletion mathx/sum.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package mathx

import (
"go.kyoto.codes/zen/v3/cast"
"github.com/yznts/zen/v3/cast"
"golang.org/x/exp/constraints"
)

Expand Down
2 changes: 1 addition & 1 deletion templatex/ext.async.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package templatex
import (
"html/template"

"go.kyoto.codes/zen/v3/async"
"github.com/yznts/zen/v3/async"
)

/*
Expand Down
2 changes: 1 addition & 1 deletion templatex/ext.b64.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package templatex
import (
"html/template"

"go.kyoto.codes/zen/v3/b64"
"github.com/yznts/zen/v3/b64"
)

/*
Expand Down
2 changes: 1 addition & 1 deletion templatex/ext.conv.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package templatex
import (
"html/template"

"go.kyoto.codes/zen/v3/conv"
"github.com/yznts/zen/v3/conv"
)

/*
Expand Down
2 changes: 1 addition & 1 deletion templatex/ext.errorsx.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package templatex
import (
"html/template"

"go.kyoto.codes/zen/v3/errorsx"
"github.com/yznts/zen/v3/errorsx"
)

/*
Expand Down
2 changes: 1 addition & 1 deletion templatex/ext.fmtx.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package templatex
import (
"html/template"

"go.kyoto.codes/zen/v3/fmtx"
"github.com/yznts/zen/v3/fmtx"
)

/*
Expand Down
2 changes: 1 addition & 1 deletion templatex/ext.jsonx.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package templatex
import (
"html/template"

"go.kyoto.codes/zen/v3/jsonx"
"github.com/yznts/zen/v3/jsonx"
)

/*
Expand Down
2 changes: 1 addition & 1 deletion templatex/ext.mapx.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package templatex
import (
"html/template"

"go.kyoto.codes/zen/v3/mapx"
"github.com/yznts/zen/v3/mapx"
)

/*
Expand Down
2 changes: 1 addition & 1 deletion templatex/ext.mathx.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package templatex
import (
"html/template"

"go.kyoto.codes/zen/v3/mathx"
"github.com/yznts/zen/v3/mathx"
)

/*
Expand Down
2 changes: 1 addition & 1 deletion templatex/ext.regexpx.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package templatex
import (
"html/template"

"go.kyoto.codes/zen/v3/regexpx"
"github.com/yznts/zen/v3/regexpx"
)

/*
Expand Down
2 changes: 1 addition & 1 deletion templatex/ext.slice.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package templatex
import (
"html/template"

"go.kyoto.codes/zen/v3/slice"
"github.com/yznts/zen/v3/slice"
)

/*
Expand Down

0 comments on commit cfccca9

Please sign in to comment.