From d6d35f8213ba886237ff69802c52fae685366559 Mon Sep 17 00:00:00 2001 From: Joshue Abance Date: Wed, 19 Feb 2025 21:35:55 +0800 Subject: [PATCH] fix: endpoint for coins categories endpoint --- api/categories/client.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api/categories/client.go b/api/categories/client.go index 07a1f55..4634fd7 100644 --- a/api/categories/client.go +++ b/api/categories/client.go @@ -16,5 +16,5 @@ func NewClient(c *geckohttp.Client, url string) *CategoriesClient { } func (c *CategoriesClient) categoriesUrl() string { - return c.URL + "/categories" + return c.URL + "/coins/categories" }