mirror of
https://github.com/IoTManagerProject/IoTManager.git
synced 2026-03-26 14:12:16 +03:00
15 lines
355 B
C
15 lines
355 B
C
#pragma once
|
|
#include "Global.h"
|
|
|
|
#ifdef STANDARD_WEB_SERVER
|
|
extern void standWebServerInit();
|
|
extern bool handleFileRead(String path);
|
|
extern String getContentType(String filename);
|
|
//#ifdef REST_FILE_OPERATIONS
|
|
extern void handleFileUpload();
|
|
extern void handleFileDelete();
|
|
extern void handleFileCreate();
|
|
extern void handleFileList();
|
|
//#endif
|
|
#endif
|