mirror of
https://github.com/hoernschen/dendrite.git
synced 2025-04-04 11:03:39 +00:00
13 lines
160 B
Go
13 lines
160 B
Go
|
package shared
|
||
|
|
||
|
import (
|
||
|
"database/sql"
|
||
|
|
||
|
"github.com/matrix-org/dendrite/internal/sqlutil"
|
||
|
)
|
||
|
|
||
|
type Database struct {
|
||
|
DB *sql.DB
|
||
|
Writer sqlutil.Writer
|
||
|
}
|