Files
monibuca/pkg/db/postgres.go
2024-11-08 09:14:11 +08:00

12 lines
125 B
Go

//go:build postgres
package db
import (
"gorm.io/driver/postgres"
)
func init() {
Factory["postgres"] = postgres.Open
}