Add Update() error to control.InterfaceFinder

This commit is contained in:
世界 2024-09-22 22:15:12 +08:00
parent 55908bea36
commit c63546470b
No known key found for this signature in database
GPG key ID: CD109927C34A63C4

View file

@ -6,6 +6,7 @@ import (
)
type InterfaceFinder interface {
Update() error
Interfaces() []Interface
InterfaceIndexByName(name string) (int, error)
InterfaceNameByIndex(index int) (string, error)