diff options
author | Vidhu Kant Sharma <vidhukant@protonmail.ch> | 2022-02-24 00:43:23 +0530 |
---|---|---|
committer | Vidhu Kant Sharma <vidhukant@protonmail.ch> | 2022-02-24 00:43:23 +0530 |
commit | 0f321b7c4691923ead42a9b020da98dce1196d07 (patch) | |
tree | b53014eebd02c6573c5f82a1fa1c2fe699ba9b66 /user/manga/README.md | |
parent | b6235cb6331bac5e1a2d791c78578ebfb298d2eb (diff) |
modified the endpoints to meet requirements for updating manga
Diffstat (limited to 'user/manga/README.md')
-rw-r--r-- | user/manga/README.md | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/user/manga/README.md b/user/manga/README.md new file mode 100644 index 0000000..1a6c636 --- /dev/null +++ b/user/manga/README.md @@ -0,0 +1,19 @@ +# MAL2Go/user +MAL2Go `user/anime` package has functionality related to updating the user's anime list. + +## Usage +Firstly, import this package and instanciate the client. +``` go +import ( + "github.com/MikunoNaka/MAL2Go/user/anime" +) +``` + +Now instanciate with +``` go +myClient := anime.Client { + AuthToken: "Bearer " + yourTokenHere, +} +``` + +**More to be added later** |