mirror of
https://github.com/MetaCubeX/mihomo.git
synced 2025-12-19 16:30:07 +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
|
|
}
|