mirror of
https://github.com/skoelle/wt32sc01-dashboard.git
synced 2026-09-17 17:30:25 +00:00
12 lines
265 B
C++
12 lines
265 B
C++
// Copyright (c) 2026 Stefan Koelle - https://stefankoelle.de - MIT License
|
|
#pragma once
|
|
#include <Arduino.h>
|
|
|
|
struct ApiResult {
|
|
bool success = false;
|
|
String body;
|
|
int httpCode = -1;
|
|
};
|
|
|
|
ApiResult httpGet(const String &url, uint32_t timeoutMs = 5000);
|