hikvision/isc/config.go

17 lines
179 B
Go

package isc
// 海康配置
type Config struct {
Host string
AppKey string
AppSecret string
}
var conf *Config
func Init(c *Config) {
if c != nil {
conf = c
}
}