mirror of
https://github.com/scroll-tech/scroll.git
synced 2026-01-14 08:28:02 -05:00
12 lines
258 B
Go
12 lines
258 B
Go
package database
|
|
|
|
// DBConfig db config
|
|
type DBConfig struct {
|
|
// data source name
|
|
DSN string `json:"dsn"`
|
|
DriverName string `json:"driver_name"`
|
|
|
|
MaxOpenNum int `json:"maxOpenNum" default:"200"`
|
|
MaxIdleNUm int `json:"maxIdleNum" default:"20"`
|
|
}
|