mirror of
https://github.com/jlengrand/openapi-generator.git
synced 2026-05-11 00:21:18 +00:00
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
|
|
}
|