You've already forked openaccounting-server
mirror of
https://github.com/openaccounting/oa-server.git
synced 2025-12-09 00:50:59 +13:00
10 lines
147 B
Go
10 lines
147 B
Go
|
|
package model
|
||
|
|
|
||
|
|
type SystemHealthInteface interface {
|
||
|
|
PingDatabase() error
|
||
|
|
}
|
||
|
|
|
||
|
|
func (model *Model) PingDatabase() error {
|
||
|
|
return model.db.Ping()
|
||
|
|
}
|