mirror of
https://github.com/matrix-org/dendrite.git
synced 2026-01-06 13:43:09 -06:00
Linter
This commit is contained in:
parent
81b3fb9715
commit
271be34fd6
|
|
@ -39,23 +39,23 @@ import (
|
||||||
|
|
||||||
// Database represents an account database
|
// Database represents an account database
|
||||||
type Database struct {
|
type Database struct {
|
||||||
DB *sql.DB
|
DB *sql.DB
|
||||||
Writer sqlutil.Writer
|
Writer sqlutil.Writer
|
||||||
Accounts tables.AccountsTable
|
Accounts tables.AccountsTable
|
||||||
Profiles tables.ProfileTable
|
Profiles tables.ProfileTable
|
||||||
AccountDatas tables.AccountDataTable
|
AccountDatas tables.AccountDataTable
|
||||||
ThreePIDs tables.ThreePIDTable
|
ThreePIDs tables.ThreePIDTable
|
||||||
OpenIDTokens tables.OpenIDTable
|
OpenIDTokens tables.OpenIDTable
|
||||||
KeyBackups tables.KeyBackupTable
|
KeyBackups tables.KeyBackupTable
|
||||||
KeyBackupVersions tables.KeyBackupVersionTable
|
KeyBackupVersions tables.KeyBackupVersionTable
|
||||||
Devices tables.DevicesTable
|
Devices tables.DevicesTable
|
||||||
LoginTokens tables.LoginTokenTable
|
LoginTokens tables.LoginTokenTable
|
||||||
Notifications tables.NotificationTable
|
Notifications tables.NotificationTable
|
||||||
Pushers tables.PusherTable
|
Pushers tables.PusherTable
|
||||||
Stats tables.StatsTable
|
Stats tables.StatsTable
|
||||||
LoginTokenLifetime time.Duration
|
LoginTokenLifetime time.Duration
|
||||||
ServerName gomatrixserverlib.ServerName
|
ServerName gomatrixserverlib.ServerName
|
||||||
BcryptCost int
|
BcryptCost int
|
||||||
OpenIDTokenLifetime time.Duration
|
OpenIDTokenLifetime time.Duration
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue