Browse Source

fix db util remove mysql driver

ls 2 years ago
parent
commit
3057bff599
1 changed files with 1 additions and 1 deletions
  1. 1 1
      db/db.go

+ 1 - 1
db/db.go

@@ -10,7 +10,7 @@ import (
 	// PostgreSQL
 	_ "github.com/lib/pq"
 	// MySQL
-	_ "github.com/go-sql-driver/mysql"
+	//_ "github.com/go-sql-driver/mysql"
 	"github.com/jmoiron/sqlx"
 )