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