+ /**
+ * Maneja el comando server/status.
+ */
+ HTTPResponse* cmd_server_status(void) const;
+
+ /**
+ * Maneja el comando connection/list.
+ */
+ HTTPResponse* cmd_connection_list(void);
+
+ /**
+ * Maneja el comando connection/stop.
+ */
+ HTTPResponse* cmd_connection_stop(const Command& command);
+
+ /**
+ * Maneja el comando transmission/list.
+ */
+ HTTPResponse* cmd_transmission_list(void);
+
+ /**
+ * Maneja el comando transmission/start.
+ */
+ HTTPResponse* cmd_transmission_start(const Command& command);
+
+ /**
+ * Maneja el comando transmission/stop.
+ */
+ HTTPResponse* cmd_transmission_stop(const Command& command);
+
+ /**
+ * Maneja el comando plant/list.
+ */
+ HTTPResponse* cmd_plant_list(void);
+
+ /**
+ * Maneja el comando plant/get.
+ */
+ HTTPResponse* cmd_plant_get(const Command& command);
+
+ /**
+ * Maneja el comando plant/get.
+ */
+ HTTPResponse* cmd_plant_set(const Command& command);
+
+ /**
+ * Maneja el comando plant/stop.
+ */
+ HTTPResponse* cmd_plant_stop(const Command& command);
+