sic/src/routerin.cc

39 lines
493 B
C++

#include <cstring>
using std::strcmp;
#include "Foohash.H"
namespace routerin {
class EventRouter {
};
class BaseHandler{
virtual int handle_event() = 0;
};
class FilesEventHandler:public BaseHandler{
};
class StaticEventHandler:public BaseHandler{
};
};
//REST API Documentation
///files/<zahl> (index in vector<Sicccobjst>)
///date/<datestring> (files am date hochgeladen)
///static/<mööp.html> (statisches html ausliefern)
///uploadmagic/ (upload form request)