2022-07-15 18:05:58 +02:00
|
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
2022-06-15 23:46:22 +02:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
|
|
#include <ESPAsyncWebServer.h>
|
|
|
|
|
|
|
|
|
|
class WebApiWebappClass {
|
|
|
|
|
public:
|
|
|
|
|
void init(AsyncWebServer* server);
|
|
|
|
|
void loop();
|
|
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
AsyncWebServer* _server;
|
|
|
|
|
};
|