Added basic types.

This commit is contained in:
Andrew Lalis 2024-08-15 19:29:13 -04:00
parent 13cc122e9a
commit 26caa8df24
6 changed files with 46 additions and 0 deletions

16
.gitignore vendored Normal file
View File

@ -0,0 +1,16 @@
.dub
docs.json
__dummy.html
docs/
/handy-http-transport
handy-http-transport.so
handy-http-transport.dylib
handy-http-transport.dll
handy-http-transport.a
handy-http-transport.lib
handy-http-transport-test-*
*.exe
*.pdb
*.o
*.obj
*.lst

15
dub.json Normal file
View File

@ -0,0 +1,15 @@
{
"authors": [
"Andrew Lalis"
],
"copyright": "Copyright © 2024, Andrew Lalis",
"dependencies": {
"handy-http-primitives": {
"path": "../primitives"
},
"streams": "~>3.5.0"
},
"description": "Implementations of HTTP transport protocols.",
"license": "MIT",
"name": "handy-http-transport"
}

View File

@ -0,0 +1,2 @@
module handy_http_transport.http1;

View File

@ -0,0 +1,2 @@
module handy_http_transport.http2;

View File

@ -0,0 +1,7 @@
module handy_http_transport.interfaces;
import handy_http_primitives;
interface HttpTransport {
}

View File

@ -0,0 +1,4 @@
module handy_http_transport;
public import handy_http_transport.http1;
public import handy_http_transport.http2;