summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authormo khan <mo.khan@gmail.com>2020-12-21 15:24:55 -0700
committermo khan <mo.khan@gmail.com>2020-12-21 15:24:55 -0700
commit26f31fe1fa573b06a8399a39a101875be7626b20 (patch)
treee766e22f461271d3e2dfcf513f545004e80e79ba /lib
Woops...
Diffstat (limited to 'lib')
-rw-r--r--lib/server.rb7
1 files changed, 7 insertions, 0 deletions
diff --git a/lib/server.rb b/lib/server.rb
new file mode 100644
index 0000000..6b14bf7
--- /dev/null
+++ b/lib/server.rb
@@ -0,0 +1,7 @@
+require 'rack'
+
+class Server
+ def call(env)
+ [200, {}, []]
+ end
+end