Reorganized imports

This commit is contained in:
Faissal Elamraoui 2016-08-01 17:50:02 +02:00
parent 00e358fc03
commit f1787c5beb
2 changed files with 6 additions and 4 deletions

View File

@ -17,14 +17,15 @@ package main
import (
"database/sql"
"fmt"
_ "github.com/go-sql-driver/mysql"
_ "github.com/lib/pq"
"os"
"os/exec"
"path"
"path/filepath"
"regexp"
"strings"
_ "github.com/go-sql-driver/mysql"
_ "github.com/lib/pq"
)
const (

View File

@ -20,11 +20,12 @@ package main
import (
"database/sql"
"fmt"
_ "github.com/go-sql-driver/mysql"
_ "github.com/lib/pq"
"os"
"path"
"strings"
_ "github.com/go-sql-driver/mysql"
_ "github.com/lib/pq"
)
func generateHproseAppcode(driver, connStr, level, tables, currpath string) {