cmd_gen_dao.go 674 B

12345678910111213141516171819202122
  1. // Copyright GoFrame gf Author(https://goframe.org). All Rights Reserved.
  2. //
  3. // This Source Code Form is subject to the terms of the MIT License.
  4. // If a copy of the MIT was not distributed with this file,
  5. // You can obtain one at https://github.com/gogf/gf.
  6. package cmd
  7. import (
  8. _ "github.com/gogf/gf/contrib/drivers/clickhouse/v2"
  9. _ "github.com/gogf/gf/contrib/drivers/mssql/v2"
  10. _ "github.com/gogf/gf/contrib/drivers/mysql/v2"
  11. _ "github.com/gogf/gf/contrib/drivers/oracle/v2"
  12. _ "github.com/gogf/gf/contrib/drivers/pgsql/v2"
  13. _ "github.com/gogf/gf/contrib/drivers/sqlite/v2"
  14. "github.com/gogf/gf/cmd/gf/v2/internal/cmd/gendao"
  15. )
  16. type (
  17. cGenDao = gendao.CGenDao
  18. )