Files
openaccounting-server/core/model/syshealth.go

10 lines
147 B
Go
Raw Normal View History

package model
type SystemHealthInteface interface {
PingDatabase() error
}
func (model *Model) PingDatabase() error {
return model.db.Ping()
}