fastpastebin/database/handler.go

17 lines
233 B
Go
Raw Normal View History

2018-04-30 18:42:17 +05:00
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()
}