mirror of
https://github.com/langhuihui/monibuca.git
synced 2025-12-24 13:48:04 +08:00
10 lines
131 B
Go
10 lines
131 B
Go
//go:build duckdb
|
|
|
|
package db
|
|
|
|
import "github.com/c0deltin/duckdb-driver/duckdb"
|
|
|
|
func init() {
|
|
Factory["duckdb"] = duckdb.Open
|
|
}
|