File tree Expand file tree Collapse file tree 3 files changed +6
-6
lines changed Expand file tree Collapse file tree 3 files changed +6
-6
lines changed Original file line number Diff line number Diff line change 1
1
MIT License
2
2
3
- Copyright (c) 2020 Griffin Qiu
3
+ Copyright (c) 2020 Longbridge
4
4
5
5
Permission is hereby granted, free of charge, to any person obtaining a copy
6
6
of this software and associated documentation files (the "Software"), to deal
Original file line number Diff line number Diff line change 1
1
# Go Nested Set
2
2
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 )
4
4
5
5
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 ) .
6
6
@@ -21,7 +21,7 @@ For manage a nested tree node like this:
21
21
## Installation
22
22
23
23
```
24
- go get github.com/griffinqiu/go- nested-set
24
+ go get github.com/longbridgeapp/ nested-set
25
25
```
26
26
27
27
## Usage
@@ -48,7 +48,7 @@ Example:
48
48
``` go
49
49
import (
50
50
" database/sql"
51
- " github.com/griffinqiu/go- nested-set"
51
+ " github.com/longbridgeapp/ nested-set"
52
52
)
53
53
54
54
// Category
@@ -68,7 +68,7 @@ type Category struct {
68
68
### Move Node
69
69
70
70
``` go
71
- import nestedset " github.com/griffinqiu/go- nested-set"
71
+ import nestedset " github.com/longbridgeapp/ nested-set"
72
72
73
73
// create a new node root level last child
74
74
nestedset.Create (tx, &node, nil )
Original file line number Diff line number Diff line change 1
- module github.com/griffinqiu/go- nested-set
1
+ module github.com/longbridgeapp/ nested-set
2
2
3
3
go 1.14
4
4
You can’t perform that action at this time.
0 commit comments