Skip to content

Commit

Permalink
feat: change module path to laptudirm.com/x/
Browse files Browse the repository at this point in the history
  • Loading branch information
raklaptudirm committed Mar 29, 2022
1 parent 20f7c90 commit e7304e2
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module github.com/raklaptudirm/brainfuck
module laptudirm.com/x/brainfuck

go 1.16
2 changes: 1 addition & 1 deletion pkg/ast/ast.go
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@

package ast

import "github.com/raklaptudirm/brainfuck/pkg/token"
import "laptudirm.com/x/brainfuck/pkg/token"

type Node interface {
TokenLiteral() string
Expand Down
2 changes: 1 addition & 1 deletion pkg/lexer/lexer.go
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ package lexer
import (
"unicode/utf8"

"github.com/raklaptudirm/brainfuck/pkg/token"
"laptudirm.com/x/brainfuck/pkg/token"
)

type Lexer struct {
Expand Down
6 changes: 3 additions & 3 deletions pkg/parser/parser.go
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@
package parser

import (
"github.com/raklaptudirm/brainfuck/pkg/ast"
"github.com/raklaptudirm/brainfuck/pkg/lexer"
"github.com/raklaptudirm/brainfuck/pkg/token"
"laptudirm.com/x/brainfuck/pkg/ast"
"laptudirm.com/x/brainfuck/pkg/lexer"
"laptudirm.com/x/brainfuck/pkg/token"
)

type Parser struct {
Expand Down
4 changes: 2 additions & 2 deletions pkg/vm/vm.go
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@ import (
"errors"
"fmt"

"github.com/raklaptudirm/brainfuck/pkg/ast"
"github.com/raklaptudirm/brainfuck/pkg/token"
"laptudirm.com/x/brainfuck/pkg/ast"
"laptudirm.com/x/brainfuck/pkg/token"
)

type Machine struct {
Expand Down

0 comments on commit e7304e2

Please sign in to comment.