初步实现安装界面

This commit is contained in:
刘祥超
2020-10-13 20:05:13 +08:00
parent 6d268d0b73
commit 0e3330e1c6
76 changed files with 2550 additions and 88 deletions

View File

@@ -24,7 +24,13 @@ func NewSSLCertGroupDAO() *SSLCertGroupDAO {
}).(*SSLCertGroupDAO)
}
var SharedSSLCertGroupDAO = NewSSLCertGroupDAO()
var SharedSSLCertGroupDAO *SSLCertGroupDAO
func init() {
dbs.OnReady(func() {
SharedSSLCertGroupDAO = NewSSLCertGroupDAO()
})
}
// 启用条目
func (this *SSLCertGroupDAO) EnableSSLCertGroup(id uint32) error {