diff --git a/README.md b/README.md index 6f00ca4..04158bb 100644 --- a/README.md +++ b/README.md @@ -13,7 +13,7 @@ NSWrap runs on MacOS and requires `clang` (from the XCode command line tools) and the MacOS system header files. ```sh -go get gitlab.wow.st/gmp/nswrap +go get git.wow.st/gmp/nswrap/... ``` From your `go` source directory, type: diff --git a/cmd/nswrap/main.go b/cmd/nswrap/main.go index 9603f96..df48b4e 100644 --- a/cmd/nswrap/main.go +++ b/cmd/nswrap/main.go @@ -12,8 +12,8 @@ import ( "strings" "gopkg.in/yaml.v2" - "gitlab.wow.st/gmp/nswrap/ast" - "gitlab.wow.st/gmp/nswrap/wrap" + "git.wow.st/gmp/nswrap/ast" + "git.wow.st/gmp/nswrap/wrap" ) var Debug = false diff --git a/examples/app/main.go b/examples/app/main.go index cfc4131..412c6d7 100644 --- a/examples/app/main.go +++ b/examples/app/main.go @@ -4,7 +4,7 @@ package main import ( "fmt" "runtime" - "gitlab.wow.st/gmp/nswrap/examples/app/ns" + "git.wow.st/gmp/nswrap/examples/app/ns" ) //Shortcut for literal NSStrings diff --git a/examples/bluetooth/main.go b/examples/bluetooth/main.go index 9990517..5ce8cb4 100644 --- a/examples/bluetooth/main.go +++ b/examples/bluetooth/main.go @@ -5,7 +5,7 @@ import "C" import ( "encoding/binary" "fmt" - "gitlab.wow.st/gmp/nswrap/examples/bluetooth/ns" + "git.wow.st/gmp/nswrap/examples/bluetooth/ns" ) func updateState(c ns.CBCentralManager) { diff --git a/examples/foundation/main.go b/examples/foundation/main.go index 5a5cc0c..801f2d4 100644 --- a/examples/foundation/main.go +++ b/examples/foundation/main.go @@ -4,7 +4,7 @@ package main import ( "fmt" - "gitlab.wow.st/gmp/nswrap/examples/foundation/ns" + "git.wow.st/gmp/nswrap/examples/foundation/ns" ) func main() { diff --git a/examples/simple/main.go b/examples/simple/main.go index 47ef3b8..50b2efc 100644 --- a/examples/simple/main.go +++ b/examples/simple/main.go @@ -3,7 +3,7 @@ package main import ( "fmt" - ns "gitlab.wow.st/gmp/nswrap/examples/simple/ClassOne" + ns "git.wow.st/gmp/nswrap/examples/simple/ClassOne" ) func cb(super ns.ClassThreeSupermethods) ns.Int { diff --git a/wrap/main.go b/wrap/main.go index 3d3c04f..8f4e7c2 100644 --- a/wrap/main.go +++ b/wrap/main.go @@ -9,8 +9,8 @@ import ( "strconv" "strings" - "gitlab.wow.st/gmp/nswrap/ast" - "gitlab.wow.st/gmp/nswrap/types" + "git.wow.st/gmp/nswrap/ast" + "git.wow.st/gmp/nswrap/types" ) var (