summaryrefslogtreecommitdiff
path: root/src/signup.cc
diff options
context:
space:
mode:
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);
+}