mirror of
https://github.com/pushbits/server.git
synced 2025-04-30 18:57:17 +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()
|
|
}
|