summaryrefslogtreecommitdiff
path: root/src/signup.cc
diff options
context:
space:
mode:
authorJoel Klinghed <the_jk@yahoo.com>2015-05-28 21:16:26 +0200
committerJoel Klinghed <the_jk@yahoo.com>2015-05-28 21:16:26 +0200
commitb5a0e93f400d75ddef67c21c35878cfafee56e1a (patch)
tree73dd35971de66cd1d09d303665bd5a2189396361 /src/signup.cc
parent720295848ea0d909cb39c004cbeaf1055fa7cffc (diff)
Small start for signup
Diffstat (limited to 'src/signup.cc')
-rw-r--r--src/signup.cc19
1 files changed, 19 insertions, 0 deletions
diff --git a/src/signup.cc b/src/signup.cc
new file mode 100644
index 0000000..a3eafd4
--- /dev/null
+++ b/src/signup.cc
@@ -0,0 +1,19 @@
+#include "common.hh"
+
+#include "cgi.hh"
+#include "db.hh"
+
+using namespace stuff;
+
+namespace {
+
+bool handle_request(CGI* cgi) {
+
+ return false;
+}
+
+} // namespace
+
+int main() {
+ return CGI::run(handle_request);
+}