fix: align health endpoint with backend

This commit is contained in:
2026-04-03 13:45:36 +00:00
parent 0280f2c327
commit b287b1ff17

View File

@@ -93,7 +93,7 @@ func (c *Client) Delete(path string) ([]byte, error) {
// Health checks the API health endpoint and returns the response.
func (c *Client) Health() (map[string]interface{}, error) {
data, err := c.Get("/api/health/")
data, err := c.Get("/health")
if err != nil {
return nil, err
}