feat: 支持跳过网络检查

This commit is contained in:
Mmx233
2022-01-21 22:44:35 +08:00
parent ce0c178e91
commit 94f532c624
2 changed files with 6 additions and 5 deletions

View File

@@ -13,9 +13,10 @@ type Guardian struct {
}
type Basic struct {
Timeout uint `json:"timeout"`
Interfaces string `json:"interfaces"`
DemoMode bool `json:"demo_mode"`
Timeout uint `json:"timeout"`
Interfaces string `json:"interfaces"`
DemoMode bool `json:"demo_mode"`
SkipNetCheck bool `json:"skip_net_check"`
}
type Settings struct {