mirror of
https://github.com/tbnobody/OpenDTU.git
synced 2026-01-04 03:43:37 +01:00
15 lines
283 B
C
15 lines
283 B
C
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
||
|
|
#pragma once
|
||
|
|
|
||
|
|
#include <ESPAsyncWebServer.h>
|
||
|
|
|
||
|
|
class WebApiMaintenanceClass {
|
||
|
|
public:
|
||
|
|
void init(AsyncWebServer* server);
|
||
|
|
void loop();
|
||
|
|
|
||
|
|
private:
|
||
|
|
void onRebootPost(AsyncWebServerRequest* request);
|
||
|
|
|
||
|
|
AsyncWebServer* _server;
|
||
|
|
};
|