mihomo/rules/provider/patch_android.go

18 lines
187 B
Go
Raw Normal View History

2023-11-17 23:12:10 +08:00
//go:build android && cmfa
package provider
import "time"
var (
suspended bool
)
type UpdatableProvider interface {
UpdatedAt() time.Time
}
func Suspend(s bool) {
suspended = s
}