Skip to content

Commit

Permalink
fixed db driver import problem of adm.
Browse files Browse the repository at this point in the history
  • Loading branch information
JasonHonor committed Oct 28, 2019
1 parent d59bff5 commit f62f784
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions adm/cli.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,17 @@ package main

import (
"fmt"
cli "github.com/jawher/mow.cli"
"github.com/mgutz/ansi"
"os"
"runtime"
"runtime/debug"

_ "github.com/GoAdminGroup/go-admin/modules/db/drivers/mssql"
_ "github.com/GoAdminGroup/go-admin/modules/db/drivers/mysql"
_ "github.com/GoAdminGroup/go-admin/modules/db/drivers/postgres"
_ "github.com/GoAdminGroup/go-admin/modules/db/drivers/sqlite"

cli "github.com/jawher/mow.cli"
"github.com/mgutz/ansi"
)

func main() {
Expand Down

0 comments on commit f62f784

Please sign in to comment.