mirror of
https://github.com/TeaOSLab/EdgeCommon.git
synced 2025-11-23 19:20:24 +08:00
10 lines
266 B
Go
10 lines
266 B
Go
|
|
package systemconfigs
|
||
|
|
|
||
|
|
// 安全相关配置
|
||
|
|
type SecurityConfig struct {
|
||
|
|
Frame string `json:"frame"`
|
||
|
|
AllowCountryIds []int64 `json:"allowCountryIds"`
|
||
|
|
AllowProvinceIds []int64 `json:"allowProvinceIds"`
|
||
|
|
AllowLocal bool `json:"allowLocal"`
|
||
|
|
}
|