19 lines
735 B
Go
19 lines
735 B
Go
// Copyright GoFrame Author(https://goframe.org). All Rights Reserved.
|
|
//
|
|
// This Source Code Form is subject to the terms of the MIT License.
|
|
// If a copy of the MIT was not distributed with this file,
|
|
// You can obtain one at https://github.com/gogf/gf.
|
|
|
|
// Package drivers provides database drivers registration for GF ORM.
|
|
// This package automatically registers common database drivers when imported.
|
|
package drivers
|
|
|
|
import (
|
|
_ "github.com/gogf/gf/contrib/drivers/clickhouse/v2"
|
|
_ "github.com/gogf/gf/contrib/drivers/mssql/v2"
|
|
_ "github.com/gogf/gf/contrib/drivers/mysql/v2"
|
|
_ "github.com/gogf/gf/contrib/drivers/oracle/v2"
|
|
_ "github.com/gogf/gf/contrib/drivers/pgsql/v2"
|
|
_ "github.com/gogf/gf/contrib/drivers/sqlite/v2"
|
|
)
|