#include "posix.h"
#include "external/curl.h"
#include "log.h"
const bool have_curl = false;
void
muon_curl_init(void)
{
}
void
muon_curl_deinit(void)
{
}
bool
muon_curl_fetch(const char *url, uint8_t **buf, uint64_t *len)
{
LOG_E("curl not enabled");
return false;
}