1
0
Fork 0
mirror of https://github.com/pushbits/server.git synced 2025-08-25 15:26:53 +02:00
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()
}