#include "svc.h"
#include "api.h"

void setup() {
  // put your setup code here, to run once:
  Serial.begin(115200);
  Serial.println("Hello, ESP32!");

  regApi("api1",&api1);
  regApi("api2",&api2);

  callApi("api11");


  //api1();
  //api2();
}

void loop() {
  // put your main code here, to run repeatedly:
  delay(10); // this speeds up the simulation
}