move include to cpp file

This commit is contained in:
Peter Buchegger 2021-03-19 22:39:04 +01:00
parent d3974a8d2b
commit bb0145b9b0
2 changed files with 4 additions and 3 deletions

View file

@ -1,5 +1,9 @@
#include <SPIFFS.h>
#ifndef CPPCHECK
#include <ArduinoJson.h>
#endif
#include "configuration.h"
#include "logger.h"

View file

@ -4,9 +4,6 @@
#include <list>
#include <Arduino.h>
#ifndef CPPCHECK
#include <ArduinoJson.h>
#endif
class Configuration
{