diff --git a/lexer/lexer.go b/lexer/lexer.go index 955de20..db73ed3 100644 --- a/lexer/lexer.go +++ b/lexer/lexer.go @@ -6,7 +6,7 @@ package lexer import ( "fmt" - "github.com/localhots/punk/buffer" + "github.com/localhots/kifflom/buffer" ) type ( diff --git a/lexer/lexer_test.go b/lexer/lexer_test.go index 46ae85d..63537fb 100644 --- a/lexer/lexer_test.go +++ b/lexer/lexer_test.go @@ -7,7 +7,7 @@ import ( "runtime" "testing" - "github.com/localhots/punk/buffer" + "github.com/localhots/kifflom/buffer" ) func BenchmarkRun(t *testing.B) { diff --git a/main.go b/main.go index 06524ab..1665434 100644 --- a/main.go +++ b/main.go @@ -7,8 +7,8 @@ import ( "strings" "github.com/davecheney/profile" - "github.com/localhots/punk/buffer" - "github.com/localhots/punk/parser" + "github.com/localhots/kifflom/buffer" + "github.com/localhots/kifflom/parser" ) func main() { diff --git a/parser/parser.go b/parser/parser.go index 58db05f..c381cab 100644 --- a/parser/parser.go +++ b/parser/parser.go @@ -5,8 +5,8 @@ import ( "strconv" "strings" - "github.com/localhots/punk/buffer" - "github.com/localhots/punk/lexer" + "github.com/localhots/kifflom/buffer" + "github.com/localhots/kifflom/lexer" ) type (