| 1 | #include "trinity_module.h" |
| 2 | |
| 3 | void trinity_module_init(void) { |
| 4 | trinity_module_string_t str = {.ptr = "hello", .len = strlen("hello")}; |
| 5 | log_debug(&str); |
| 6 | } |
| 7 | |
| 8 | void trinity_module_help(trinity_module_option_string_t *topic, |
| 9 | trinity_module_string_t *ret) { |
no test coverage detected