mirror of
https://github.com/mountain-loop/yaak.git
synced 2026-05-17 13:17:01 +02:00
Plugin module loading
This commit is contained in:
@@ -1 +0,0 @@
|
||||
sayHello('Plugin');
|
||||
@@ -0,0 +1,3 @@
|
||||
export function hello() {
|
||||
sayHello('Plugin');
|
||||
}
|
||||
@@ -0,0 +1,5 @@
|
||||
import { hello } from './hello.js';
|
||||
|
||||
export function entrypoint() {
|
||||
hello();
|
||||
}
|
||||
Reference in New Issue
Block a user