* Create an instance for `Greeter` with the given context and run `hello()` * @param ctx Context object
(ctx: Context)
| 26 | * @param ctx Context object |
| 27 | */ |
| 28 | async function sayHello(ctx: Context) { |
| 29 | const greeter = await instantiateClass(Greeter, ctx); |
| 30 | console.log(greeter.hello()); |
| 31 | } |
| 32 | |
| 33 | export async function main() { |
| 34 | const ctx = new Context('invocation-context'); |
no test coverage detected