Files
gotify-server/database/ping.go
Jannis Mattheis 81c4a73df3 Add health api
2019-08-16 09:28:57 +02:00

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()
}