Skip to content

Commit

Permalink
refactor: Update import paths to use the main package for consistency
Browse files Browse the repository at this point in the history
  • Loading branch information
ZanzyTHEbar committed Oct 16, 2024
1 parent cb80a62 commit 92f9682
Show file tree
Hide file tree
Showing 9 changed files with 6 additions and 5 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ package main

import (
"context"
"github.com/ZanzyTHEbar/assert-lib/assert"
"github.com/ZanzyTHEbar/assert-lib"
)

func main() {
Expand Down
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion examples/basic_assertion.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package main
import (
"context"

"github.com/ZanzyTHEbar/assert-lib/assert"
"github.com/ZanzyTHEbar/assert-lib"
)

func main() {
Expand Down
2 changes: 1 addition & 1 deletion examples/custom_exit.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"context"
"fmt"

"github.com/ZanzyTHEbar/assert-lib/assert"
"github.com/ZanzyTHEbar/assert-lib"
)

func main() {
Expand Down
2 changes: 1 addition & 1 deletion examples/deferred_assertions.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package main
import (
"context"

"github.com/ZanzyTHEbar/assert-lib/assert"
"github.com/ZanzyTHEbar/assert-lib"
)

func main() {
Expand Down
2 changes: 1 addition & 1 deletion examples/formater.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package main
import (
"context"

"github.com/ZanzyTHEbar/assert-lib/assert"
"github.com/ZanzyTHEbar/assert-lib"
)

func main() {
Expand Down
File renamed without changes.
1 change: 1 addition & 0 deletions go.sum
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405 h1:yhCVgyC4o1eVCa2tZl7eS0r+SDo693bJlVdllGtEeKM=
gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0=
gopkg.in/yaml.v2 v2.4.0 h1:D8xgwECY7CYvx+Y2n4sBz93Jn9JRvxdiyyo8CTfuKaY=
gopkg.in/yaml.v2 v2.4.0/go.mod h1:RDklbk79AGWmwhnvt/jBztapEOGDOx6ZbXqjP6csGnQ=

0 comments on commit 92f9682

Please sign in to comment.