7 lines
105 B
Go
7 lines
105 B
Go
|
package options
|
||
|
|
||
|
type DBOption struct {
|
||
|
Path string `json:"path"`
|
||
|
Timeout int `json:"timeout"`
|
||
|
}
|