| 1836 | }; |
| 1837 | |
| 1838 | int main(int argc, char *argv[]) |
| 1839 | { |
| 1840 | setup_locale(); |
| 1841 | plugin_main(argv, init, PLUGIN_RESTARTABLE, true, NULL, |
| 1842 | commands, ARRAY_SIZE(commands), |
| 1843 | /* No notifications */ |
| 1844 | NULL, 0, |
| 1845 | hooks, ARRAY_SIZE(hooks), |
| 1846 | NULL, 0, |
| 1847 | plugin_option("fetchinvoice-noconnect", "flag", |
| 1848 | "Don't try to connect directly to fetch an invoice.", |
| 1849 | flag_option, &disable_connect), |
| 1850 | NULL); |
| 1851 | } |
nothing calls this directly
no test coverage detected