From 00ae445a54914182a9845e5f2938d0c017b83f5d Mon Sep 17 00:00:00 2001 From: eyedeekay Date: Sun, 2 Feb 2025 19:44:00 -0500 Subject: [PATCH] Plan the thing. --- lib/http/README.md | 11 +++++++++++ lib/http/client/httpclient.go | 1 + lib/http/server/httpserver.go | 1 + 3 files changed, 13 insertions(+) create mode 100644 lib/http/client/httpclient.go create mode 100644 lib/http/server/httpserver.go diff --git a/lib/http/README.md b/lib/http/README.md index ccd5ca5..0da5f5b 100644 --- a/lib/http/README.md +++ b/lib/http/README.md @@ -1,3 +1,14 @@ HTTP Tunnels ============ +HTTP Tunnels are especially for HTTP Services(httpserver) and HTTP User-Agents(httpclient). + +HTTP Client +----------- + + + +HTTP Server +----------- + + diff --git a/lib/http/client/httpclient.go b/lib/http/client/httpclient.go new file mode 100644 index 0000000..d3ee62f --- /dev/null +++ b/lib/http/client/httpclient.go @@ -0,0 +1 @@ +package httpclient diff --git a/lib/http/server/httpserver.go b/lib/http/server/httpserver.go new file mode 100644 index 0000000..b482627 --- /dev/null +++ b/lib/http/server/httpserver.go @@ -0,0 +1 @@ +package httpserver