diff options
Diffstat (limited to 'user')
-rw-r--r-- | user/README.md | 15 | ||||
-rw-r--r-- | user/anime/README.md | 20 | ||||
-rw-r--r-- | user/anime/animelist.go | 6 | ||||
-rw-r--r-- | user/anime/animelist.structs.go | 2 | ||||
-rw-r--r-- | user/anime/client.go | 2 | ||||
-rw-r--r-- | user/anime/request_handler.go | 2 | ||||
-rw-r--r-- | user/anime/update_animelist.go | 2 | ||||
-rw-r--r-- | user/client.go | 2 | ||||
-rw-r--r-- | user/manga/README.md | 20 | ||||
-rw-r--r-- | user/manga/client.go | 2 | ||||
-rw-r--r-- | user/manga/mangalist.go | 6 | ||||
-rw-r--r-- | user/manga/mangalist.structs.go | 2 | ||||
-rw-r--r-- | user/manga/request_handler.go | 2 | ||||
-rw-r--r-- | user/manga/update_mangalist.go | 2 | ||||
-rw-r--r-- | user/request_handler.go | 2 |
15 files changed, 16 insertions, 71 deletions
diff --git a/user/README.md b/user/README.md deleted file mode 100644 index ba76847..0000000 --- a/user/README.md +++ /dev/null @@ -1,15 +0,0 @@ -# MAL2Go/user -MAL2Go `user` package has functionality related to getting data about the authenticated user. - -## Structure -- [user.go](user.go) -Contains all the exported functions for pulling data from the API. - -- [user.structs.go](user.structs.go) -Represents the user data returned by the API - -- [client.go](client.go) -The Client for accessing the API with this package. - -- [request_handler.go](request_handler.go) -Responsible for making HTTP requests diff --git a/user/anime/README.md b/user/anime/README.md deleted file mode 100644 index df3449f..0000000 --- a/user/anime/README.md +++ /dev/null @@ -1,20 +0,0 @@ -# MAL2Go/user/anime -MAL2Go `user/anime` package has functionality related to updating the user's anime list. - -To *get* anime data, refer to the [`anime`](../../anime) package. - -## Structure -- [animelist.go](animelist.go) -Contains the exported functions to do some basic functions with anime lists. - -- [animelist.structs.go](animelist.structs.go) -Contains all the structs representing animelist data pulled from MyAnimeList. - -- [client.go](client.go) -The Client for accessing the API with this package. - -- [request_handler.go](request_handler.go) -Responsible for making HTTP requests - -- [update_animelist.go](update_animelist.go) -Contains all the exported functions to update an anime entry in user's animelist. diff --git a/user/anime/animelist.go b/user/anime/animelist.go index 3ed101e..c876943 100644 --- a/user/anime/animelist.go +++ b/user/anime/animelist.go @@ -20,9 +20,9 @@ import ( "encoding/json" "strconv" "fmt" - a "github.com/MikunoNaka/MAL2Go/v4/anime" - e "github.com/MikunoNaka/MAL2Go/v4/errhandlers" - u "github.com/MikunoNaka/MAL2Go/v4/util" + a "dev.vidhukant.xyz/MAL2Go/v4/anime" + e "dev.vidhukant.xyz/MAL2Go/v4/errhandlers" + u "dev.vidhukant.xyz/MAL2Go/v4/util" ) const BASE_URL string = "https://api.myanimelist.net/v2" diff --git a/user/anime/animelist.structs.go b/user/anime/animelist.structs.go index 6f2417b..de7c4c9 100644 --- a/user/anime/animelist.structs.go +++ b/user/anime/animelist.structs.go @@ -17,7 +17,7 @@ package anime import ( - "github.com/MikunoNaka/MAL2Go/v4/anime" + "dev.vidhukant.xyz/MAL2Go/v4/anime" ) type animeListRaw struct { diff --git a/user/anime/client.go b/user/anime/client.go index aa4962f..145620d 100644 --- a/user/anime/client.go +++ b/user/anime/client.go @@ -17,7 +17,7 @@ package anime import ( - "github.com/MikunoNaka/MAL2Go/v4/util" + "dev.vidhukant.xyz/MAL2Go/v4/util" ) type Client util.DefaultClient diff --git a/user/anime/request_handler.go b/user/anime/request_handler.go index 9ca1cb4..4b9232a 100644 --- a/user/anime/request_handler.go +++ b/user/anime/request_handler.go @@ -24,7 +24,7 @@ import ( "strconv" "strings" "errors" - "github.com/MikunoNaka/MAL2Go/v4/util" + "dev.vidhukant.xyz/MAL2Go/v4/util" ) type UpdateResponse struct { diff --git a/user/anime/update_animelist.go b/user/anime/update_animelist.go index dfec5e7..bf57883 100644 --- a/user/anime/update_animelist.go +++ b/user/anime/update_animelist.go @@ -16,7 +16,7 @@ package anime import ( - e "github.com/MikunoNaka/MAL2Go/v4/errhandlers" + e "dev.vidhukant.xyz/MAL2Go/v4/errhandlers" "fmt" "net/url" "strconv" diff --git a/user/client.go b/user/client.go index 3681640..60aa969 100644 --- a/user/client.go +++ b/user/client.go @@ -17,7 +17,7 @@ package user import ( - "github.com/MikunoNaka/MAL2Go/v4/util" + "dev.vidhukant.xyz/MAL2Go/v4/util" ) type Client util.DefaultClient diff --git a/user/manga/README.md b/user/manga/README.md deleted file mode 100644 index cc93d9a..0000000 --- a/user/manga/README.md +++ /dev/null @@ -1,20 +0,0 @@ -# MAL2Go/user/manga -MAL2Go `user/manga` package has functionality related to updating the user's manga list. - -To *get* manga data, refer to the [`manga`](../../manga) package. - -## Structure -- [mangalist.go](mangalist.go) -Contains the exported functions to do some basic functions with manga lists. - -- [mangalist.structs.go](mangalist.structs.go) -Contains all the structs representing mangalist data pulled from MyAnimeList. - -- [client.go](client.go) -The Client for accessing the API with this package. - -- [request_handler.go](request_handler.go) -Responsible for making HTTP requests - -- [update_mangalist.go](update_mangalist.go) -Contains all the exported functions to update a manga entry in user's mangalist. diff --git a/user/manga/client.go b/user/manga/client.go index b674854..940a9c5 100644 --- a/user/manga/client.go +++ b/user/manga/client.go @@ -17,7 +17,7 @@ package manga import ( - "github.com/MikunoNaka/MAL2Go/v4/util" + "dev.vidhukant.xyz/MAL2Go/v4/util" ) type Client util.DefaultClient diff --git a/user/manga/mangalist.go b/user/manga/mangalist.go index 91531b8..226849b 100644 --- a/user/manga/mangalist.go +++ b/user/manga/mangalist.go @@ -20,9 +20,9 @@ import ( "encoding/json" "strconv" "fmt" - e "github.com/MikunoNaka/MAL2Go/v4/errhandlers" - u "github.com/MikunoNaka/MAL2Go/v4/util" - m "github.com/MikunoNaka/MAL2Go/v4/manga" + e "dev.vidhukant.xyz/MAL2Go/v4/errhandlers" + u "dev.vidhukant.xyz/MAL2Go/v4/util" + m "dev.vidhukant.xyz/MAL2Go/v4/manga" ) const BASE_URL string = "https://api.myanimelist.net/v2" diff --git a/user/manga/mangalist.structs.go b/user/manga/mangalist.structs.go index f7cf97d..b773b17 100644 --- a/user/manga/mangalist.structs.go +++ b/user/manga/mangalist.structs.go @@ -17,7 +17,7 @@ package manga import ( - "github.com/MikunoNaka/MAL2Go/v4/manga" + "dev.vidhukant.xyz/MAL2Go/v4/manga" ) type mangaListRaw struct { diff --git a/user/manga/request_handler.go b/user/manga/request_handler.go index be7ff17..72cd906 100644 --- a/user/manga/request_handler.go +++ b/user/manga/request_handler.go @@ -24,7 +24,7 @@ import ( "strconv" "strings" "errors" - "github.com/MikunoNaka/MAL2Go/v4/util" + "dev.vidhukant.xyz/MAL2Go/v4/util" ) type UpdateResponse struct { diff --git a/user/manga/update_mangalist.go b/user/manga/update_mangalist.go index 5dda7b4..bf02d6d 100644 --- a/user/manga/update_mangalist.go +++ b/user/manga/update_mangalist.go @@ -16,7 +16,7 @@ package manga import ( - e "github.com/MikunoNaka/MAL2Go/v4/errhandlers" + e "dev.vidhukant.xyz/MAL2Go/v4/errhandlers" "fmt" "net/url" "strconv" diff --git a/user/request_handler.go b/user/request_handler.go index 4571b0b..5455940 100644 --- a/user/request_handler.go +++ b/user/request_handler.go @@ -20,7 +20,7 @@ import ( "io/ioutil" "log" "net/http" - "github.com/MikunoNaka/MAL2Go/v4/util" + "dev.vidhukant.xyz/MAL2Go/v4/util" "errors" "encoding/json" ) |