diff options
author | TheArcaneBrony <myrainbowdash949@gmail.com> | 2022-08-18 06:18:00 +0200 |
---|---|---|
committer | TheArcaneBrony <myrainbowdash949@gmail.com> | 2022-09-04 10:48:54 +0200 |
commit | c0e00d04c061351317de93a88dde4d49f5e99630 (patch) | |
tree | 49e505f18e6cd2d7fea6fd63158e30411872810a /src/plugins/PluginIndex.ts | |
parent | Cleanup, reformat, fix some todos, git hook (diff) | |
download | server-c0e00d04c061351317de93a88dde4d49f5e99630.tar.xz |
Add fallback to bcryptjs, make canvas optional
Diffstat (limited to '')
-rw-r--r-- | src/plugins/PluginIndex.ts | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/plugins/PluginIndex.ts b/src/plugins/PluginIndex.ts index 2688d0bf..502161a1 100644 --- a/src/plugins/PluginIndex.ts +++ b/src/plugins/PluginIndex.ts @@ -1,5 +1,6 @@ +import { Plugin } from "util/plugin"; import * as example_plugin from "./example-plugin/TestPlugin"; export const PluginIndex: any = { - "example-plugin": new example_plugin.default() -}; + "example-plugin": new example_plugin.default(), +}; \ No newline at end of file |