plugin-loader 0.1.1

Dynamic pipe loader for wacli
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
package wacli:cli@1.0.0;

interface registry {
  use types.{command-meta, command-result};

  list-commands: func() -> list<command-meta>;
  run: func(name: string, argv: list<string>) -> command-result;
}

world registry-provider {
  export registry;
}