Skip to content

Commit

Permalink
update import path
Browse files Browse the repository at this point in the history
  • Loading branch information
Tim Cooper committed Dec 24, 2016
1 parent 8d335db commit 24588ee
Show file tree
Hide file tree
Showing 15 changed files with 15 additions and 15 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# gopher-luar [![GoDoc](https://godoc.org/github.com/layeh/gopher-luar?status.svg)](https://godoc.org/github.com/layeh/gopher-luar)
# gopher-luar [![GoDoc](https://godoc.org/layeh.com/gopher-luar?status.svg)](https://godoc.org/layeh.com/gopher-luar)

custom type reflection for [gopher-lua](https://github.com/yuin/gopher-lua).

Expand Down
2 changes: 1 addition & 1 deletion array.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package luar
package luar // import "layeh.com/gopher-luar"

import (
"reflect"
Expand Down
2 changes: 1 addition & 1 deletion cache.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package luar
package luar // import "layeh.com/gopher-luar"

import (
"container/list"
Expand Down
2 changes: 1 addition & 1 deletion chan.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package luar
package luar // import "layeh.com/gopher-luar"

import (
"reflect"
Expand Down
2 changes: 1 addition & 1 deletion doc.go
Original file line number Diff line number Diff line change
Expand Up @@ -256,4 +256,4 @@
// when functions like New are called, and potentially when luar-created values
// are used. It is your responsibility to ensure that concurrent access of the
// state's registry does not happen.
package luar
package luar // import "layeh.com/gopher-luar"
2 changes: 1 addition & 1 deletion example_test.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package luar
package luar // import "layeh.com/gopher-luar"

import (
"fmt"
Expand Down
2 changes: 1 addition & 1 deletion func.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package luar
package luar // import "layeh.com/gopher-luar"

import (
"reflect"
Expand Down
2 changes: 1 addition & 1 deletion luar.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package luar
package luar // import "layeh.com/gopher-luar"

import (
"reflect"
Expand Down
2 changes: 1 addition & 1 deletion map.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package luar
package luar // import "layeh.com/gopher-luar"

import (
"reflect"
Expand Down
2 changes: 1 addition & 1 deletion metatable.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package luar
package luar // import "layeh.com/gopher-luar"

import (
"reflect"
Expand Down
2 changes: 1 addition & 1 deletion ptr.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package luar
package luar // import "layeh.com/gopher-luar"

import (
"reflect"
Expand Down
2 changes: 1 addition & 1 deletion slice.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package luar
package luar // import "layeh.com/gopher-luar"

import (
"reflect"
Expand Down
2 changes: 1 addition & 1 deletion struct.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package luar
package luar // import "layeh.com/gopher-luar"

import (
"reflect"
Expand Down
2 changes: 1 addition & 1 deletion type.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package luar
package luar // import "layeh.com/gopher-luar"

import (
"reflect"
Expand Down
2 changes: 1 addition & 1 deletion util.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package luar
package luar // import "layeh.com/gopher-luar"

import (
"fmt"
Expand Down

0 comments on commit 24588ee

Please sign in to comment.