This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| public class Address | |
| { | |
| public string Street { get; set; } | |
| public string City { get; set; } | |
| public int Zip { get; set; } | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| CREATE TYPE address ( | |
| street text, | |
| city text, | |
| zip int); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #include <stdio.h> | |
| #include "haywire.h" | |
| #include "http_request.h" | |
| #include "http_parser.h" | |
| #include "http_server.h" | |
| #include "http_request_context.h" | |
| #include "trie/radix.h" | |
| #include "trie/route_compare_method.h" | |
| #define CRLF "\r\n" |