Add some Http3 skeleton

This commit is contained in:
Alex Hultman
2022-05-02 23:32:55 +02:00
parent e4c6fbf8de
commit b46a456393
7 changed files with 88 additions and 1 deletions
+11
View File
@@ -0,0 +1,11 @@
namespace uWS {
struct Http3Response {
// has a quic stream
void end(std::string_view data) {
}
};
}