Files
fastpastebin/database/handler.go
T
2018-04-30 18:42:17 +05:00

17 lines
233 B
Go

package database
import (
// other
"github.com/jmoiron/sqlx"
)
type Handler struct{}
func (dbh Handler) GetDatabaseConnection() *sqlx.DB {
return d.GetDatabaseConnection()
}
func (dbh Handler) Initialize() {
d.Initialize()
}