f5/godbpool.go
aozhiwei 0cbea64e07 1
2024-08-10 12:54:41 +08:00

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()
}