Fix module path

main v0.0.1
Jonas Letzbor 2024-04-07 20:59:05 +02:00
parent aa03dfa345
commit 9eea116536
Signed by: RPJosh
GPG Key ID: 43ACB900522EA740
4 changed files with 7 additions and 4 deletions

2
go.mod
View File

@ -1,4 +1,4 @@
module git.rpjosh.de/RPJosh/ddl-parser
module git.rpjosh.de/RPJosh/go-ddl-parser
go 1.22.1

View File

@ -8,7 +8,8 @@ import (
"sort"
"strings"
"git.rpjosh.de/RPJosh/ddl-parser"
"git.rpjosh.de/RPJosh/go-ddl-parser"
"git.rpjosh.de/RPJosh/go-logger"
)

View File

@ -6,7 +6,8 @@ import (
"strings"
"testing"
"git.rpjosh.de/RPJosh/ddl-parser"
"git.rpjosh.de/RPJosh/go-ddl-parser"
"github.com/google/go-cmp/cmp"
)

View File

@ -4,7 +4,8 @@ import (
"fmt"
"strings"
"git.rpjosh.de/RPJosh/ddl-parser"
"git.rpjosh.de/RPJosh/go-ddl-parser"
"git.rpjosh.de/RPJosh/go-logger"
)