| 83 | } |
| 84 | |
| 85 | int main(int argc, char **argv) { |
| 86 | static char *triggers[] = { |
| 87 | "Echo *", |
| 88 | "Hi!", |
| 89 | "* is *", |
| 90 | "*\?", |
| 91 | "!ls", |
| 92 | NULL, |
| 93 | }; |
| 94 | startBot(TB_CREATE_KV_STORE, argc, argv, TB_FLAGS_NONE, handleRequest, cron, triggers); |
| 95 | return 0; /* Never reached. */ |
| 96 | } |
nothing calls this directly
no test coverage detected