Skip to content

Commit 7a850aa

Browse files
committed
Update go mod path
1 parent 9558ed7 commit 7a850aa

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) 2020 Griffin Qiu
3+
Copyright (c) 2020 Longbridge
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Go Nested Set
22

3-
[![build](https://github.com/griffinqiu/go-nested-set/workflows/build/badge.svg)](https://github.com/griffinqiu/go-nested-set/actions?query=workflow%3Abuild)
3+
[![build](https://github.com/longbridgeapp/nested-set/workflows/build/badge.svg)](https://github.com/longbridgeapp/nested-set/actions?query=workflow%3Abuild)
44

55
Go Nested Set is an implementation of the [Nested set model](https://en.wikipedia.org/wiki/Nested_set_model) for [Gorm](https://gorm.io/index.html).
66

@@ -21,7 +21,7 @@ For manage a nested tree node like this:
2121
## Installation
2222

2323
```
24-
go get github.com/griffinqiu/go-nested-set
24+
go get github.com/longbridgeapp/nested-set
2525
```
2626

2727
## Usage
@@ -48,7 +48,7 @@ Example:
4848
```go
4949
import (
5050
"database/sql"
51-
"github.com/griffinqiu/go-nested-set"
51+
"github.com/longbridgeapp/nested-set"
5252
)
5353

5454
// Category
@@ -68,7 +68,7 @@ type Category struct {
6868
### Move Node
6969

7070
```go
71-
import nestedset "github.com/griffinqiu/go-nested-set"
71+
import nestedset "github.com/longbridgeapp/nested-set"
7272

7373
// create a new node root level last child
7474
nestedset.Create(tx, &node, nil)

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
module github.com/griffinqiu/go-nested-set
1+
module github.com/longbridgeapp/nested-set
22

33
go 1.14
44

0 commit comments

Comments
 (0)