diff --git a/plugins/template/src/index.ts b/plugins/template/src/index.ts index 03bd39a..3ce3b9a 100644 --- a/plugins/template/src/index.ts +++ b/plugins/template/src/index.ts @@ -1,5 +1,10 @@ import { logger } from "@vendetta"; +import { storage } from "@vendetta/plugin"; import Settings from "./Settings"; +import patcher from "./stuff/patcher"; + +export const pluginsURL = + "https://vd-plugins.github.io/proxy/plugins-full.json"; export default { onLoad: () => { diff --git a/plugins/template/src/types.ts b/plugins/template/src/types.ts new file mode 100644 index 0000000..e4d40e1 --- /dev/null +++ b/plugins/template/src/types.ts @@ -0,0 +1,9 @@ +export type ThemesFullJson = { + name: string; + description: string; + authors: { + name: string; + id: string; + }[]; + main: string; +}[]; \ No newline at end of file