You've already forked openaccounting-server
mirror of
https://github.com/openaccounting/oa-server.git
synced 2025-12-09 00:50:59 +13:00
Added GET /health-check and related files
This commit is contained in:
@@ -18,6 +18,7 @@ type Datastore interface {
|
||||
PriceInterface
|
||||
SessionInterface
|
||||
ApiKeyInterface
|
||||
SystemHealthInteface
|
||||
}
|
||||
|
||||
func NewDB(dataSourceName string) (*DB, error) {
|
||||
|
||||
5
core/model/db/syshealth.go
Normal file
5
core/model/db/syshealth.go
Normal file
@@ -0,0 +1,5 @@
|
||||
package db
|
||||
|
||||
type SystemHealthInteface interface {
|
||||
Ping() error
|
||||
}
|
||||
@@ -22,6 +22,7 @@ type Interface interface {
|
||||
PriceInterface
|
||||
SessionInterface
|
||||
ApiKeyInterface
|
||||
SystemHealthInteface
|
||||
}
|
||||
|
||||
func NewModel(db db.Datastore, bcrypt util.Bcrypt, config types.Config) *Model {
|
||||
|
||||
9
core/model/syshealth.go
Normal file
9
core/model/syshealth.go
Normal file
@@ -0,0 +1,9 @@
|
||||
package model
|
||||
|
||||
type SystemHealthInteface interface {
|
||||
PingDatabase() error
|
||||
}
|
||||
|
||||
func (model *Model) PingDatabase() error {
|
||||
return model.db.Ping()
|
||||
}
|
||||
Reference in New Issue
Block a user