Plugin module loading

This commit is contained in:
Gregory Schier
2023-10-29 20:50:23 -07:00
parent 851082be9d
commit 451ffad24a
7 changed files with 108 additions and 48 deletions

View File

@@ -1 +0,0 @@
sayHello('Plugin');

View File

@@ -0,0 +1,3 @@
export function hello() {
sayHello('Plugin');
}

View File

@@ -0,0 +1,5 @@
import { hello } from './hello.js';
export function entrypoint() {
hello();
}