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/Connection.ts | |
parent | Fix some linting warnings (diff) | |
download | server-5c8359ec45da01e983a3c60d380e7fab720da600.tar.xz |
Fix connection class imports
Diffstat (limited to 'src/util/connections/Connection.ts')
-rw-r--r-- | src/util/connections/Connection.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/util/connections/Connection.ts b/src/util/connections/Connection.ts index becee589..5bdebd47 100644 --- a/src/util/connections/Connection.ts +++ b/src/util/connections/Connection.ts @@ -24,7 +24,7 @@ import { Config, DiscordApiErrors } from "../util"; /** * A connection that can be used to connect to an external service. */ -export default abstract class Connection { +export abstract class Connection { id: string; settings: { enabled: boolean }; states: Map<string, string> = new Map(); |