summary refs log tree commit diff
path: root/src/util/connections/Connection.ts
diff options
context:
space:
mode:
authorPuyodead1 <puyodead@proton.me>2023-08-06 22:56:13 -0400
committerPuyodead1 <puyodead@proton.me>2023-08-06 22:56:13 -0400
commit5c8359ec45da01e983a3c60d380e7fab720da600 (patch)
tree01b88820e0d5ce1f6a895ea305b1f95de5994f89 /src/util/connections/Connection.ts
parentFix some linting warnings (diff)
downloadserver-5c8359ec45da01e983a3c60d380e7fab720da600.tar.xz
Fix connection class imports
Diffstat (limited to '')
-rw-r--r--src/util/connections/Connection.ts2
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();