forked from loafle/openapi-generator-original
9 lines
177 B
C++
9 lines
177 B
C++
#include "AbstractService.h"
|
|
#include "Arduino.h"
|
|
|
|
|
|
|
|
void Tiny::AbstractService::begin(std::string url){
|
|
http.begin(String(url.c_str()), test_root_ca); //HTTPS connection
|
|
}
|