Skip to content

Commit 5078a4d

Browse files
update import paths
1 parent 29b680b commit 5078a4d

File tree

8 files changed

+14
-14
lines changed

8 files changed

+14
-14
lines changed

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -26,14 +26,14 @@ Once you've discovered your router, you can retrieve its address by calling
2626
its Location method. This address can be supplied to Load to connect to the
2727
router directly, which is much faster than calling Discover.
2828

29-
See the [godoc](http://godoc.org/github.com/NebulousLabs/go-upnp) for full documentation.
29+
See the [godoc](http://godoc.org/gitlab.com/NebulousLabs/go-upnp) for full documentation.
3030

3131
## example ##
3232

3333
```go
3434
import (
3535
"log"
36-
"github.com/NebulousLabs/go-upnp"
36+
"gitlab.com/NebulousLabs/go-upnp"
3737
)
3838

3939
func main() {

goupnp/dcps/internetgateway1/internetgateway1.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@ import (
1212
"net/url"
1313
"time"
1414

15-
"github.com/NebulousLabs/go-upnp/goupnp"
16-
"github.com/NebulousLabs/go-upnp/goupnp/soap"
15+
"gitlab.com/NebulousLabs/go-upnp/goupnp"
16+
"gitlab.com/NebulousLabs/go-upnp/goupnp/soap"
1717
)
1818

1919
// Hack to avoid Go complaining if time isn't used.

goupnp/device.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ import (
88
"fmt"
99
"net/url"
1010

11-
"github.com/NebulousLabs/go-upnp/goupnp/scpd"
12-
"github.com/NebulousLabs/go-upnp/goupnp/soap"
11+
"gitlab.com/NebulousLabs/go-upnp/goupnp/scpd"
12+
"gitlab.com/NebulousLabs/go-upnp/goupnp/soap"
1313
)
1414

1515
const (

goupnp/goupnp.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,8 @@ import (
2222
"net/url"
2323
"time"
2424

25-
"github.com/NebulousLabs/go-upnp/goupnp/httpu"
26-
"github.com/NebulousLabs/go-upnp/goupnp/ssdp"
25+
"gitlab.com/NebulousLabs/go-upnp/goupnp/httpu"
26+
"gitlab.com/NebulousLabs/go-upnp/goupnp/ssdp"
2727

2828
"golang.org/x/net/html/charset"
2929
)

goupnp/service_client.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import (
55
"fmt"
66
"net/url"
77

8-
"github.com/NebulousLabs/go-upnp/goupnp/soap"
8+
"gitlab.com/NebulousLabs/go-upnp/goupnp/soap"
99
)
1010

1111
// ServiceClient is a SOAP client, root device and the service for the SOAP

goupnp/ssdp/registry.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import (
99
"sync"
1010
"time"
1111

12-
"github.com/NebulousLabs/go-upnp/goupnp/httpu"
12+
"gitlab.com/NebulousLabs/go-upnp/goupnp/httpu"
1313
)
1414

1515
const (

goupnp/ssdp/ssdp.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import (
88
"strconv"
99
"time"
1010

11-
"github.com/NebulousLabs/go-upnp/goupnp/httpu"
11+
"gitlab.com/NebulousLabs/go-upnp/goupnp/httpu"
1212
)
1313

1414
const (

upnp.go

+3-3
Original file line numberDiff line numberDiff line change
@@ -32,9 +32,9 @@ import (
3232
"net/url"
3333
"time"
3434

35-
"github.com/NebulousLabs/fastrand"
36-
"github.com/NebulousLabs/go-upnp/goupnp"
37-
"github.com/NebulousLabs/go-upnp/goupnp/dcps/internetgateway1"
35+
"gitlab.com/NebulousLabs/fastrand"
36+
"gitlab.com/NebulousLabs/go-upnp/goupnp"
37+
"gitlab.com/NebulousLabs/go-upnp/goupnp/dcps/internetgateway1"
3838
)
3939

4040
// An IGD provides an interface to the most commonly used functions of an

0 commit comments

Comments
 (0)