mirror of
https://github.com/digistump/DigistumpArduino.git
synced 2025-04-28 07:39:02 -07:00
10 lines
111 B
C++
10 lines
111 B
C++
#ifndef server_h
|
|
#define server_h
|
|
|
|
class Server : public Print {
|
|
public:
|
|
virtual void begin() =0;
|
|
};
|
|
|
|
#endif
|