netplay-lobby-server-go/model/postgres.go

12 lines
259 B
Go
Raw Permalink Normal View History

2024-12-24 22:09:17 +08:00
package model
import (
"github.com/jinzhu/gorm"
_ "github.com/jinzhu/gorm/dialects/postgres"
)
// GetPostgreDB returns a postgresql interface using GORM.
func GetPostgreDB(connection string) (*gorm.DB, error) {
return gorm.Open("postgres", connection)
}