aboutsummaryrefslogtreecommitdiff
path: root/interfaces/http/http.rb
diff options
context:
space:
mode:
authorJohn Ankarström <john@ankarstrom.se>2021-03-02 21:35:44 +0100
committerJohn Ankarström <john@ankarstrom.se>2021-03-02 21:35:44 +0100
commitd072b503f5ccc5d08f279aac463d37837cbbb576 (patch)
treef8f1265ea274ad1d4a32a8272da68187813231e6 /interfaces/http/http.rb
parent0882804d708fe5a1732c6b9faa7d9a2f369f5257 (diff)
downloadcomb-d072b503f5ccc5d08f279aac463d37837cbbb576.tar.gz
Add 'post' and 'not_found' views
Diffstat (limited to 'interfaces/http/http.rb')
-rw-r--r--interfaces/http/http.rb1
1 files changed, 1 insertions, 0 deletions
diff --git a/interfaces/http/http.rb b/interfaces/http/http.rb
index 8947890..0589c93 100644
--- a/interfaces/http/http.rb
+++ b/interfaces/http/http.rb
@@ -7,5 +7,6 @@ class HTTPInterface < Sinatra::Base
require_relative 'web/web'; use WebInterface
# require_relative 'admin/admin'; use AdminInterface
# require_relative 'rss/rss'; use RSSInterface
+
run! if app_file == $0
end