Change domain name in package path.
This commit is contained in:
parent
749fd503dd
commit
a2d0f9bc4f
|
@ -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:
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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) {
|
||||
|
|
|
@ -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() {
|
||||
|
|
|
@ -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 {
|
||||
|
|
|
@ -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 (
|
||||
|
|
Loading…
Reference in New Issue
Block a user