Files

10 lines
147 B
Go
Raw Permalink Normal View History

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