mirror of
https://gitclone.com/github.com/MetaCubeX/Clash.Meta
synced 2025-02-23 20:52:15 +08:00
20 lines
192 B
Go
20 lines
192 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
|
|
}
|