netplay-lobby-server-go/model/postgres.go
2024-12-24 22:09:17 +08:00

12 lines
259 B
Go

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)
}