golem-cli 1.3.1

Command line interface for Golem.
1
2
3
4
5
6
7
8
9
10
11
12
// Test WIT covering three components, A, B and C, referencing each other as A->B->C->A.

package test:c;

// NOTE: this interface does not introduce or use any types, so it won't be part of the stub
interface api-c {
  func-c: func();
}

world c {
  export api-c;
}