From 505a92d5ebce687b1d1bc9da5025d27d23f1dc4e Mon Sep 17 00:00:00 2001 From: Voronsky Date: Sat, 8 Jun 2024 23:04:53 -0400 Subject: [PATCH] case sensitivity matters --- pterogo.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pterogo.go b/pterogo.go index 6f2b18d..0afeef1 100644 --- a/pterogo.go +++ b/pterogo.go @@ -20,8 +20,8 @@ var ( // PteroRequestHeaders keeps track of the auth token and base url for all requests // Its methods allow to make a request using the auth token and base url type PteroRequestHeaders struct { - auth_token string - url string + Auth_token string + Url string } // A PterodactylClient implements methods for all client API routes