blob: df3449f4c8f11be4d03d5c368fbb13cefab7ba08 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
# 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.
|