14 lines
175 B
Go
14 lines
175 B
Go
package f5
|
|
|
|
type goDbPool struct {
|
|
dbPool
|
|
}
|
|
|
|
func (this *goDbPool) init(style DBStyle) {
|
|
this.dbPool.init(style)
|
|
}
|
|
|
|
func (this *goDbPool) unInit() {
|
|
this.dbPool.unInit()
|
|
}
|