pushbits/internal/database/health.go
2021-01-16 16:56:49 +01: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()
}