mirror of
https://github.com/SagerNet/sing.git
synced 2025-04-04 04:17:38 +03:00
11 lines
145 B
Go
11 lines
145 B
Go
//go:build !linux
|
|
|
|
package control
|
|
|
|
import (
|
|
"time"
|
|
)
|
|
|
|
func SetKeepAlivePeriod(idle time.Duration, interval time.Duration) Func {
|
|
return nil
|
|
}
|