wireguard-dashboard/config/wireguard.go

7 lines
241 B
Go
Raw Normal View History

2024-07-05 14:41:35 +08:00
package config
type wireguard struct {
RestartMode string `json:"restartMode"` // 重启模式 NOW - 立即重启 | DELAY - 延时 | HAND - 手动重启
DelayTime int64 `json:"delayTime"` // 延时重启的间隔(单位:秒)
}