#pragma once

// ESP32 specific
// #include "esp_log.h"

// C++ system level
#include <vector>
#include <string>
#include <cinttypes>

// project specific
// #include "MyHeader.hpp"


namespace SpiderLib {

  namespace Util {

    std::vector<std::string> split(const std::string& s, char delim);

  }
}