telegraf/plugins/inputs/sql/drivers.go

9 lines
176 B
Go
Raw Normal View History

2021-06-16 03:10:52 +08:00
package sql
import (
// Blank imports to register the drivers
_ "github.com/denisenkom/go-mssqldb"
_ "github.com/go-sql-driver/mysql"
_ "github.com/jackc/pgx/v4/stdlib"
)