mirror of
https://github.com/SagerNet/sing.git
synced 2025-04-03 20:07:38 +03:00
12 lines
204 B
Go
12 lines
204 B
Go
package pause
|
|
|
|
type Manager interface {
|
|
DevicePause()
|
|
DeviceWake()
|
|
DevicePauseChan() <-chan struct{}
|
|
NetworkPause()
|
|
NetworkWake()
|
|
NetworkPauseChan() <-chan struct{}
|
|
IsPaused() bool
|
|
WaitActive()
|
|
}
|