summary refs log tree commit diff
path: root/src/util/plugin/PluginStore.ts
blob: 8b02f1570c48f4d1ce04a98a751497f557cdfb3b (plain) (blame)
1
2
3
4
5
6
7
import { Plugin } from "./";

const root = process.env.PLUGIN_LOCATION || "dist/plugins";

export class PluginStore {
	public static plugins: Plugin[] = [];
}