mirror of
https://github.com/shtorm-7/sing-box-extended.git
synced 2026-09-18 22:25:41 +00:00
14 lines
197 B
Go
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
|
|
}
|