#include #include "spore/Spore.h" // Create Spore instance with custom labels Spore spore({ {"app", "base"}, {"role", "demo"} }); void setup() { // Initialize the Spore framework spore.setup(); // Start the API server and complete initialization spore.begin(); } void loop() { // Run the Spore framework loop spore.loop(); }