mirror of
https://github.com/pushbits/server.git
synced 2025-04-29 18:26:49 +02:00
6 lines
136 B
Go
6 lines
136 B
Go
package database
|
|
|
|
// Health reports the status of the database connection.
|
|
func (d *Database) Health() error {
|
|
return d.sqldb.Ping()
|
|
}
|