This repository has been archived on 2024-08-30. You can view files and clone it, but cannot push or open issues or pull requests.
RaceBot/internal/database/database.go
2023-04-16 12:21:01 +07:00

23 lines
281 B
Go

package database
import (
"git.rouggy.com/rouggy/RaceBot/internal/domain"
"github.com/jinzhu/gorm"
)
var db *gorm.DB
var err error
type DB struct {
handler *gorm.DB
}
func NewDB(cfg domain.Config) {
}
// GetDB : get current connection
func GetDB() *gorm.DB {
return db
}