fix import path

This commit is contained in:
lqs 2020-07-28 18:21:14 +08:00
parent 75ed37f331
commit 6e7b78f28d
3 changed files with 3 additions and 3 deletions

View File

@ -3,7 +3,7 @@ package main
import (
"fmt"
_ "github.com/go-sql-driver/mysql"
"sqlingo/generator"
"github.com/lqs/sqlingo/generator"
)
func main() {

View File

@ -3,7 +3,7 @@ package main
import (
"fmt"
_ "github.com/lib/pq"
"sqlingo/generator"
"github.com/lqs/sqlingo/generator"
)
func main() {

View File

@ -3,7 +3,7 @@ package main
import (
"fmt"
_ "github.com/mattn/go-sqlite3"
"sqlingo/generator"
"github.com/lqs/sqlingo/generator"
)
func main() {