mirror of
https://github.com/IoTManagerProject/IoTManager.git
synced 2026-03-27 14:42:18 +03:00
9 lines
106 B
C
9 lines
106 B
C
|
|
#pragma once
|
||
|
|
|
||
|
|
#include <Print.h>
|
||
|
|
|
||
|
|
class Runner {
|
||
|
|
public:
|
||
|
|
virtual void run(const char*, Print*);
|
||
|
|
};
|