pushbits/database/health.go
2020-08-06 20:42:35 +02:00

6 lines
136 B
Go

package database
// Health reports the status of the database connection.
func (d *Database) Health() error {
return d.sqldb.Ping()
}