sediment-core-plugin-wit 0.1.0

WIT definitions for the sediment-core:plugin package
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
package sediment-core:plugin@0.1.0;

interface plugin {
    record plugin-config {
        name: string,
        version: string,
    }
    on-load: func() -> plugin-config;
    on-unload: func();
}

world plugin {
    export plugin;
}