mirror of
https://github.com/NoFxAiOS/nofx.git
synced 2026-07-02 10:31:04 +08:00
11 lines
226 B
Go
11 lines
226 B
Go
package proxy
|
||
|
||
// IPProvider IP提供者接口
|
||
type IPProvider interface {
|
||
// GetIPList 获取IP列表
|
||
GetIPList() ([]ProxyIP, error)
|
||
|
||
// RefreshIPList 刷新IP列表(可选实现)
|
||
RefreshIPList() ([]ProxyIP, error)
|
||
}
|