mirror of
https://github.com/TeaOSLab/EdgeCommon.git
synced 2025-12-25 03:26:36 +08:00
10 lines
155 B
Go
10 lines
155 B
Go
|
|
package ipconfigs
|
||
|
|
|
||
|
|
type ActionInterface interface {
|
||
|
|
// 运行节点
|
||
|
|
Node() string
|
||
|
|
|
||
|
|
// 执行对IP信息的处理
|
||
|
|
Run(itemConfig *IPItemConfig) error
|
||
|
|
}
|