fastpastebin/database/interface/databaseinterface.go

12 lines
153 B
Go
Raw Normal View History

2018-04-30 18:42:17 +05:00
package databaseinterface
import (
// other
"github.com/jmoiron/sqlx"
)
type Interface interface {
GetDatabaseConnection() *sqlx.DB
Initialize()
}