mirror of
https://github.com/gotify/server.git
synced 2024-01-28 15:20:56 +03: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()
|
|
}
|