mirror of
https://github.com/gotify/server.git
synced 2026-05-06 21:42:07 +08:00
7 lines
136 B
Go
7 lines
136 B
Go
package database
|
|
|
|
// Ping pings the database to verify the connection.
|
|
func (d *GormDatabase) Ping() error {
|
|
return d.DB.DB().Ping()
|
|
}
|