diff options
author | Puyodead1 <puyodead@proton.me> | 2023-08-06 22:56:13 -0400 |
---|---|---|
committer | Puyodead1 <puyodead@proton.me> | 2023-08-06 22:56:13 -0400 |
commit | 5c8359ec45da01e983a3c60d380e7fab720da600 (patch) | |
tree | 01b88820e0d5ce1f6a895ea305b1f95de5994f89 /src/api/routes/users | |
parent | Fix some linting warnings (diff) | |
download | server-5c8359ec45da01e983a3c60d380e7fab720da600.tar.xz |
Fix connection class imports
Diffstat (limited to 'src/api/routes/users')
-rw-r--r-- | src/api/routes/users/@me/connections/#connection_name/#connection_id/access-token.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/api/routes/users/@me/connections/#connection_name/#connection_id/access-token.ts b/src/api/routes/users/@me/connections/#connection_name/#connection_id/access-token.ts index 9031f3c8..789a7878 100644 --- a/src/api/routes/users/@me/connections/#connection_name/#connection_id/access-token.ts +++ b/src/api/routes/users/@me/connections/#connection_name/#connection_id/access-token.ts @@ -23,9 +23,9 @@ import { ConnectionStore, DiscordApiErrors, FieldErrors, + RefreshableConnection, } from "@spacebar/util"; import { Request, Response, Router } from "express"; -import RefreshableConnection from "../../../../../../../util/connections/RefreshableConnection"; const router = Router(); // TODO: this route is only used for spotify, twitch, and youtube. (battlenet seems to be able to PUT, maybe others also) |