You've already forked openaccounting-server
mirror of
https://github.com/openaccounting/oa-server.git
synced 2026-05-07 05:58:32 +12: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()
|
|
}
|