move include to cpp file
This commit is contained in:
parent
d3974a8d2b
commit
bb0145b9b0
2 changed files with 4 additions and 3 deletions
|
@ -1,5 +1,9 @@
|
|||
#include <SPIFFS.h>
|
||||
|
||||
#ifndef CPPCHECK
|
||||
#include <ArduinoJson.h>
|
||||
#endif
|
||||
|
||||
#include "configuration.h"
|
||||
#include "logger.h"
|
||||
|
||||
|
|
|
@ -4,9 +4,6 @@
|
|||
#include <list>
|
||||
|
||||
#include <Arduino.h>
|
||||
#ifndef CPPCHECK
|
||||
#include <ArduinoJson.h>
|
||||
#endif
|
||||
|
||||
class Configuration
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue