mirror of
https://github.com/tbnobody/OpenDTU.git
synced 2025-12-11 17:30:37 +01:00
15 lines
351 B
C
15 lines
351 B
C
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
||
|
|
#pragma once
|
||
|
|
|
||
|
|
#include <ESPAsyncWebServer.h>
|
||
|
|
#include <TaskSchedulerDeclarations.h>
|
||
|
|
|
||
|
|
class WebApiI18nClass {
|
||
|
|
public:
|
||
|
|
void init(AsyncWebServer& server, Scheduler& scheduler);
|
||
|
|
|
||
|
|
private:
|
||
|
|
void onI18nLanguages(AsyncWebServerRequest* request);
|
||
|
|
void onI18nLanguage(AsyncWebServerRequest* request);
|
||
|
|
};
|