added JSON support to select the services

This commit is contained in:
2025-05-27 21:33:15 +02:00
parent d9d0643dfc
commit 1e9a377c2a
19 changed files with 26060 additions and 139 deletions

15
src/htmx_helper.h Normal file
View File

@@ -0,0 +1,15 @@
//
// Created by lukas on 5/11/25.
//
#ifndef HTMX_HELPER_H
#define HTMX_HELPER_H
#include <string>
#include "htmx/HtmxTable.h"
HtmxTableRow create_service_table_row(std::string_view service_name, std::string_view service_id);
HtmxTableRow create_error_table_row(std::string_view error);
HtmxTable create_service_table();
#endif //HTMX_HELPER_H