Skip to content

v1.0.5

Compare
Choose a tag to compare
@chenhg5 chenhg5 released this 26 Oct 11:55
· 1183 commits to master since this release

Improvement

  • fixed dependencies

Notice

GoAdmin has moved the database drivers dependencies away. So you should import the drivers in the main.go yourself.
GoAdmin wrapped some drivers to make it easier to remember the import path.

import (
      _ "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"
)