Added basic types.
This commit is contained in:
parent
13cc122e9a
commit
26caa8df24
|
@ -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
|
|
@ -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"
|
||||
}
|
|
@ -0,0 +1,2 @@
|
|||
module handy_http_transport.http1;
|
||||
|
|
@ -0,0 +1,2 @@
|
|||
module handy_http_transport.http2;
|
||||
|
|
@ -0,0 +1,7 @@
|
|||
module handy_http_transport.interfaces;
|
||||
|
||||
import handy_http_primitives;
|
||||
|
||||
interface HttpTransport {
|
||||
|
||||
}
|
|
@ -0,0 +1,4 @@
|
|||
module handy_http_transport;
|
||||
|
||||
public import handy_http_transport.http1;
|
||||
public import handy_http_transport.http2;
|
Loading…
Reference in New Issue