diff options
author | Melody Horn / boringcactus <melody@boringcactus.com> | 2021-06-12 21:06:06 -0600 |
---|---|---|
committer | Melody Horn / boringcactus <melody@boringcactus.com> | 2021-06-12 21:06:06 -0600 |
commit | 582124d59afa438e2cb88cc024d6b19232236e1e (patch) | |
tree | 6b1bc48d5e3a405434f4900c7e20daf0d186de5a /src/http | |
parent | fcc13328ff82326d25e39504732701b27f894e22 (diff) | |
download | tosin-582124d59afa438e2cb88cc024d6b19232236e1e.tar.gz tosin-582124d59afa438e2cb88cc024d6b19232236e1e.zip |
stub out basic implementation
Diffstat (limited to 'src/http')
-rw-r--r-- | src/http/mod.rs | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/http/mod.rs b/src/http/mod.rs new file mode 100644 index 0000000..69a0706 --- /dev/null +++ b/src/http/mod.rs @@ -0,0 +1,3 @@ +pub struct Request {} + +pub struct Response(pub &'static str); |