12 lines
153 B
Go
12 lines
153 B
Go
|
package databaseinterface
|
||
|
|
||
|
import (
|
||
|
// other
|
||
|
"github.com/jmoiron/sqlx"
|
||
|
)
|
||
|
|
||
|
type Interface interface {
|
||
|
GetDatabaseConnection() *sqlx.DB
|
||
|
Initialize()
|
||
|
}
|