mirror of
https://github.com/duanhf2012/origin.git
synced 2026-02-09 11:14:43 +08:00
20 lines
282 B
Go
20 lines
282 B
Go
package sysmodule
|
|
|
|
import "github.com/duanhf2012/origin/service"
|
|
|
|
type HttpClientPoolModule struct {
|
|
service.BaseModule
|
|
}
|
|
|
|
func (slf *HttpClientPoolModule) Init(maxpool int) {
|
|
|
|
}
|
|
|
|
func (slf *HttpClientPoolModule) SyncRequest() {
|
|
|
|
}
|
|
|
|
func (slf *HttpClientPoolModule) Request() {
|
|
|
|
}
|