aboutsummaryrefslogtreecommitdiff
path: root/user/manga/README.md
diff options
context:
space:
mode:
authorVidhu Kant Sharma <vidhukant@protonmail.ch>2022-02-24 00:43:23 +0530
committerVidhu Kant Sharma <vidhukant@protonmail.ch>2022-02-24 00:43:23 +0530
commit0f321b7c4691923ead42a9b020da98dce1196d07 (patch)
treeb53014eebd02c6573c5f82a1fa1c2fe699ba9b66 /user/manga/README.md
parentb6235cb6331bac5e1a2d791c78578ebfb298d2eb (diff)
modified the endpoints to meet requirements for updating manga
Diffstat (limited to 'user/manga/README.md')
-rw-r--r--user/manga/README.md19
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**