mirror of
https://github.com/MetaCubeX/mihomo.git
synced 2025-01-12 03:52:11 +08:00
18 lines
187 B
Go
18 lines
187 B
Go
//go:build android && cmfa
|
|
|
|
package provider
|
|
|
|
import "time"
|
|
|
|
var (
|
|
suspended bool
|
|
)
|
|
|
|
type UpdatableProvider interface {
|
|
UpdatedAt() time.Time
|
|
}
|
|
|
|
func Suspend(s bool) {
|
|
suspended = s
|
|
}
|