Skip to content
This repository was archived by the owner on Jul 6, 2025. It is now read-only.

Commit b7645c5

Browse files
committed
fix fucked requires, most probably caused by vs code
1 parent c4c1a3f commit b7645c5

File tree

4 files changed

+4
-5
lines changed

4 files changed

+4
-5
lines changed

src/struct/User.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
const PastebinClient = require("./PastebinClient")
2-
const PastebinClient = require("../../struct/PastebinClient")
32

43
/**
54
* A Pastebin user.

src/struct/stores/PasteStore.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
const PastebinClient = require("../../../struct/PastebinClient")
1+
const PastebinClient = require("../PastebinClient")
22
const PastebinError = require("../PastebinError")
33
const Paste = require("../Paste")
44

src/struct/stores/UserPasteStore.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
const PastebinClient = require("../../../struct/PastebinClient")
1+
const PastebinClient = require("../PastebinClient")
22
const PastebinError = require("../PastebinError")
33
const Paste = require("../Paste")
4-
const User = require("../../../struct/User")
4+
const User = require("../User")
55

66
const xml2js = require("xml2js").parseStringPromise
77

src/struct/stores/UserStore.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
const PastebinClient = require("../../../struct/PastebinClient")
1+
const PastebinClient = require("../PastebinClient")
22
const PastebinError = require("../PastebinError")
33
const User = require("../User")
44

0 commit comments

Comments
 (0)