Files
sing-box-extended-mirror/common/settings/wifi.go
T

14 lines
197 B
Go

package settings
import (
"context"
"github.com/sagernet/sing-box/adapter"
)
type WIFIMonitor interface {
ReadWIFIState(ctx context.Context) adapter.WIFIState
Start() error
Close() error
}