From 8a342848809a26e7e13933180b4df91d4a52f898 Mon Sep 17 00:00:00 2001 From: s Date: Tue, 25 Nov 2025 09:58:42 -0500 Subject: feat: add dns site check, services list, and additional twitter/x api endpoints --- internal/client/client.go | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'internal/client/client.go') diff --git a/internal/client/client.go b/internal/client/client.go index eaf87cb..4aa6f06 100644 --- a/internal/client/client.go +++ b/internal/client/client.go @@ -126,3 +126,7 @@ func (c *Client) Patch(path string, body interface{}) ([]byte, error) { func (c *Client) Put(path string, body interface{}) ([]byte, error) { return c.doRequest(http.MethodPut, path, nil, body) } + +func (c *Client) ListServices() ([]byte, error) { + return c.Get("/", nil) +} -- cgit v1.2.3