| 12 | private TrinityModule() {} |
| 13 | |
| 14 | public static final class Message { |
| 15 | public final String content; |
| 16 | public final String to; |
| 17 | |
| 18 | public Message(String content, String to) { |
| 19 | this.content = content; |
| 20 | this.to = to; |
| 21 | } |
| 22 | } |
| 23 | |
| 24 | @Export(name = "init") |
| 25 | private static void wasmExportInit() { |
nothing calls this directly
no outgoing calls
no test coverage detected