16 lines
349 B
C++
16 lines
349 B
C++
//
|
|
// 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
|