aboutsummaryrefslogtreecommitdiff
path: root/cores/arduino/Server.h
blob: edab726be30963064af8704ed12433bb7bf9caea (plain)
1
2
3
4
5
6
7
8
9
#ifndef server_h
#define server_h

class Server {
public:
  virtual void begin() =0;
};

#endif