From 6d17f44f9b16fb78abf8a5689b63c88550b9b1a8 Mon Sep 17 00:00:00 2001 From: TheArcaneBrony Date: Sat, 13 Aug 2022 12:22:26 +0200 Subject: Plugins finally load! --- src/plugins/PluginIndex.ts | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 src/plugins/PluginIndex.ts (limited to 'src/plugins/PluginIndex.ts') diff --git a/src/plugins/PluginIndex.ts b/src/plugins/PluginIndex.ts new file mode 100644 index 00000000..502161a1 --- /dev/null +++ b/src/plugins/PluginIndex.ts @@ -0,0 +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(), +}; \ No newline at end of file -- cgit 1.5.1