HTTPServer/EntryPoint.h
2024-12-03 11:59:45 -08:00

18 lines
212 B
C++

#ifndef __EntryPoint_h__
#define __EntryPoint_h__
namespace http {
class EntryPoint {
public:
coreutils::MString url;
coreutils::MString flowName;
Flow flow;
};
}
#endif