9 lines
135 B
C++
9 lines
135 B
C++
#pragma once
|
|
#include <string_view>
|
|
|
|
class OTAHandler {
|
|
public:
|
|
OTAHandler(std::string_view hostname);
|
|
|
|
void poll();
|
|
}; |