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/util/connections/ConnectionStore.ts | |
parent | Fix some linting warnings (diff) | |
download | server-5c8359ec45da01e983a3c60d380e7fab720da600.tar.xz |
Fix connection class imports
Diffstat (limited to 'src/util/connections/ConnectionStore.ts')
-rw-r--r-- | src/util/connections/ConnectionStore.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/util/connections/ConnectionStore.ts b/src/util/connections/ConnectionStore.ts index 39abfea6..95e54fd9 100644 --- a/src/util/connections/ConnectionStore.ts +++ b/src/util/connections/ConnectionStore.ts @@ -16,8 +16,8 @@ along with this program. If not, see <https://www.gnu.org/licenses/>. */ -import Connection from "./Connection"; -import RefreshableConnection from "./RefreshableConnection"; +import { Connection } from "./Connection"; +import { RefreshableConnection } from "./RefreshableConnection"; export class ConnectionStore { public static connections: Map<string, Connection | RefreshableConnection> = |