Files
EMS-ESP32/lib_standalone/FS.h
2020-07-20 15:54:57 +02:00

11 lines
95 B
C++

#ifndef FS_h
#define FS_h
class FS {
bool open() {
return true;
};
};
#endif