1234567891011121314151617181920212223 |
- return {
- -- 通知类型 telegram, pushdeer, bark
- NOTIFY_TYPE = "pushdeer",
- --
- -- telegram 通知配置, https://github.com/0wQ/telegram-notify
- TELEGRAM_PROXY_API = "",
- TELEGRAM_TOKEN = "",
- TELEGRAM_CHAT_ID = "",
- --
- -- pushdeer 通知配置, https://www.pushdeer.com/
- PUSHDEER_API = "https://api2.pushdeer.com/message/push",
- PUSHDEER_KEY = "",
- --
- -- bark 通知配置, https://github.com/Finb/Bark
- BARK_API = "https://api.day.app",
- BARK_KEY = "",
- --
- -- 定时查询流量间隔, 单位毫秒, 设置为 0 关闭
- QUERY_TRAFFIC_INTERVAL = 1000 * 60 * 60 * 6,
- --
- -- 定时基站定位间隔, 单位毫秒, 设置为 0 关闭
- LOCATION_INTERVAL = 1000 * 60 * 30
- }
|