1
0
mirror of https://github.com/astaxie/beego.git synced 2024-06-28 19:04:12 +00:00
Beego/toolbox/healthcheck.go

29 lines
494 B
Go
Raw Normal View History

2013-11-20 13:17:49 +00:00
package toolbox
//type DatabaseCheck struct {
//}
//func (dc *DatabaseCheck) Check() error {
// if dc.isConnected() {
// return nil
// } else {
// return errors.New("can't connect database")
// }
//}
//AddHealthCheck("database",&DatabaseCheck{})
var AdminCheckList map[string]HealthChecker
type HealthChecker interface {
Check() error
}
func AddHealthCheck(name string, hc HealthChecker) {
AdminCheckList[name] = hc
}
func init() {
AdminCheckList = make(map[string]HealthChecker)
}