forked from External/ergo
add mysql timeouts
This commit is contained in:
parent
8123e3c08f
commit
98a7b45d96
5 changed files with 86 additions and 49 deletions
22
irc/mysql/config.go
Normal file
22
irc/mysql/config.go
Normal file
|
|
@ -0,0 +1,22 @@
|
|||
// Copyright (c) 2020 Shivaram Lingamneni
|
||||
// released under the MIT license
|
||||
|
||||
package mysql
|
||||
|
||||
import (
|
||||
"time"
|
||||
)
|
||||
|
||||
type Config struct {
|
||||
// these are intended to be written directly into the config file:
|
||||
Enabled bool
|
||||
Host string
|
||||
Port int
|
||||
User string
|
||||
Password string
|
||||
HistoryDatabase string `yaml:"history-database"`
|
||||
Timeout time.Duration
|
||||
|
||||
// XXX these are copied from elsewhere in the config:
|
||||
ExpireTime time.Duration
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue