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