Skip to content

Commit

Permalink
Update Package Path
Browse files Browse the repository at this point in the history
  • Loading branch information
lemon-mint committed Jul 29, 2022
1 parent e913f5d commit 747cc6f
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[![Go Reference](https://img.shields.io/badge/go-reference-%23007d9c?style=for-the-badge&logo=go)](https://pkg.go.dev/github.com/unsafe-risk/deecpy)
[![GitHub Workflow Status (push)](https://img.shields.io/github/workflow/status/unsafe-risk/deecpy/go_test/main?event=push&style=for-the-badge)](https://github.com/unsafe-risk/deecpy/actions/workflows/go_test.yml)
[![Go Reference](https://img.shields.io/badge/go-reference-%23007d9c?style=for-the-badge&logo=go)](https://pkg.go.dev/v8.run/go/deecpy)
[![GitHub Workflow Status (push)](https://img.shields.io/github/workflow/status/unsafe-risk/deecpy/go_test/main?event=push&style=for-the-badge)](https://v8.run/go/deecpy/actions/workflows/go_test.yml)
[![Codecov main](https://img.shields.io/codecov/c/gh/unsafe-risk/deecpy/main?style=for-the-badge)](https://app.codecov.io/gh/unsafe-risk/deecpy)
[![GitHub license](https://img.shields.io/github/license/unsafe-risk/deecpy?style=for-the-badge)](https://pkg.go.dev/github.com/unsafe-risk/deecpy?tab=licenses)
[![GitHub license](https://img.shields.io/github/license/unsafe-risk/deecpy?style=for-the-badge)](https://pkg.go.dev/v8.run/go/deecpy?tab=licenses)
# Deecpy

**Deecpy**, The DeepCopy Library
Expand All @@ -14,7 +14,7 @@ package main
import (
"fmt"

"github.com/unsafe-risk/deecpy"
"v8.run/go/deecpy"
)

// func deecpy.Copy[T any](dst, src *T) error
Expand Down
2 changes: 1 addition & 1 deletion build.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import (
"reflect"
"sync"

"github.com/unsafe-risk/deecpy/unsafeops"
"v8.run/go/deecpy/unsafeops"
)

var ErrUnsupportedType = errors.New("unsupported type")
Expand Down
2 changes: 1 addition & 1 deletion copy.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"reflect"
"unsafe"

"github.com/unsafe-risk/deecpy/unsafeops"
"v8.run/go/deecpy/unsafeops"
)

// Copy deeply copies the given object.
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module github.com/unsafe-risk/deecpy
module v8.run/go/deecpy

go 1.18
2 changes: 1 addition & 1 deletion vm.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"reflect"
"unsafe"

"github.com/unsafe-risk/deecpy/unsafeops"
"v8.run/go/deecpy/unsafeops"
)

type ptrmap struct {
Expand Down

0 comments on commit 747cc6f

Please sign in to comment.