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