From a989bd16c40e04bba5a5404b0ef0cd22f19d2707 Mon Sep 17 00:00:00 2001 From: "info@mode42.com" Date: Sun, 9 Aug 2026 11:54:17 +0000 Subject: now including entertain/chess --- src/main.c | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'src/main.c') diff --git a/src/main.c b/src/main.c index c91982e..3d46def 100644 --- a/src/main.c +++ b/src/main.c @@ -45,6 +45,9 @@ extern const hybbx_transport_plugin_t hybbx_plugin_ssh; #ifdef HYBBX_HAVE_PLUGIN_WEBSOCKET extern const hybbx_transport_plugin_t hybbx_plugin_websocket; #endif +#ifdef HYBBX_HAVE_PLUGIN_ENTERTAIN +extern const hybbx_transport_plugin_t hybbx_plugin_entertain; +#endif #ifdef HYBBX_HAVE_PLUGIN_BAYCOM extern const hybbx_transport_plugin_t hybbx_plugin_baycom; #endif @@ -73,6 +76,9 @@ static void register_builtin_plugins(void) #ifdef HYBBX_HAVE_PLUGIN_WEBSOCKET hybbx_registry_register(&hybbx_plugin_websocket); #endif +#ifdef HYBBX_HAVE_PLUGIN_ENTERTAIN + hybbx_registry_register(&hybbx_plugin_entertain); +#endif #ifdef HYBBX_HAVE_PLUGIN_BAYCOM hybbx_registry_register(&hybbx_plugin_baycom); #endif -- cgit v1.3.1