aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVidhu Kant Sharma <vidhukant@protonmail.ch>2022-02-16 22:32:26 +0530
committerVidhu Kant Sharma <vidhukant@protonmail.ch>2022-02-16 22:32:26 +0530
commit3269df237abce92172e115aa62e9c5d6e4652765 (patch)
tree5005993027938d6e009ceae123faead34ca47f4d
parent831a57e8d065a01cefe40dd8545770064759eb13 (diff)
renamed client to something more memorable
-rw-r--r--user/anime/client.go6
1 files changed, 3 insertions, 3 deletions
diff --git a/user/anime/client.go b/user/anime/client.go
index e9a99d3..eeba194 100644
--- a/user/anime/client.go
+++ b/user/anime/client.go
@@ -1,4 +1,4 @@
-/* mal2go - MyAnimeList V2 API wrapper for Go
+/* MAL2Go - MyAnimeList V2 API wrapper for Go
* Copyright (C) 2022 Vidhu Kant Sharma <vidhukant@protonmail.ch>
* This program is free software: you can redistribute it and/or modify
@@ -20,8 +20,8 @@ import (
"net/http"
)
-// MyAnimeList Client for mal2go/anime package
-type AnimeListClient struct {
+// MyAnimeList Client for mal2go/user/anime package
+type Client struct {
AuthToken, RefreshToken string
HttpClient http.Client
}