aboutsummaryrefslogtreecommitdiff
path: root/user/manga/mangalist.go
diff options
context:
space:
mode:
authorVidhu Kant Sharma <vidhukant@vidhukant.xyz>2022-06-29 22:51:43 +0530
committerVidhu Kant Sharma <vidhukant@vidhukant.xyz>2022-06-29 22:51:43 +0530
commit942f1f1be027a536b6a152caadd85a7af1a1fdd4 (patch)
treeb0b60359b7d27d2e69cafd15ab4963c6e3d62264 /user/manga/mangalist.go
parent7215c7f3bb6ae6e9c5c240be1f0429fb2fafab28 (diff)
fixed all bad imports importing older version
Diffstat (limited to 'user/manga/mangalist.go')
-rw-r--r--user/manga/mangalist.go6
1 files changed, 3 insertions, 3 deletions
diff --git a/user/manga/mangalist.go b/user/manga/mangalist.go
index b60b1d7..7d7cadc 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/errhandlers"
- u "github.com/MikunoNaka/MAL2Go/util"
- m "github.com/MikunoNaka/MAL2Go/manga"
+ e "github.com/MikunoNaka/MAL2Go/v2/errhandlers"
+ u "github.com/MikunoNaka/MAL2Go/v2/util"
+ m "github.com/MikunoNaka/MAL2Go/v2/manga"
)
const BASE_URL string = "https://api.myanimelist.net/v2"