lago/events_processor/config/database.go
2025-02-20 16:14:23 +01:00

15 lines
172 B
Go

package config
import (
"gorm.io/driver/postgres"
"gorm.io/gorm"
)
func NewConnection() {
db, err := gorm.Open(postgres.Open(dsn), &gorm.Config{})
}
func main() {
}