1
0
Fork 0
mirror of https://github.com/eosswedenorg/antelope-api-healthcheck synced 2026-06-18 05:00:03 +02:00

Update to github.com/eosswedenorg-go/haproxy@v0.1.0

This commit is contained in:
Henrik Hautakoski 2022-03-02 16:58:32 +01:00
parent fa740af0b1
commit 3aece958b1
No known key found for this signature in database
GPG key ID: 608414D93E862CCD
7 changed files with 90 additions and 51 deletions

View file

@ -2,7 +2,7 @@
package api
import (
"github.com/eosswedenorg-go/haproxy"
"github.com/eosswedenorg-go/haproxy/agentcheck"
)
type ApiInterface interface {
@ -11,5 +11,5 @@ type ApiInterface interface {
LogInfo() LogParams
// Call api and validate it's status.
Call() (haproxy.HealthCheckStatus, string)
Call() (agentcheck.Response, string)
}